forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Azure#60 from amarzavery/df
Merging public master to private master as of 04/11/2017 3:20 PM PST
- Loading branch information
Showing
186 changed files
with
39,296 additions
and
2,219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
arm-automation/2015-10-31/examples/account/createOrUpdateAutomationAccount.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg", | ||
"automationAccountName": "myAutomationAccount9", | ||
"api-version": "2015-10-31", | ||
"parameters": { | ||
"properties": { | ||
"sku": { | ||
"name": "Free" | ||
} | ||
}, | ||
"name": "myAutomationAccount9", | ||
"location": "East US 2" | ||
} | ||
}, | ||
"responses": { | ||
"201": { | ||
"headers": {}, | ||
"body": { | ||
"name": "myAutomationAccount9", | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount9", | ||
"type": "Microsoft.Automation/AutomationAccounts", | ||
"location": "East US 2", | ||
"tags": {}, | ||
"etag": null, | ||
"properties": { | ||
"sku": { | ||
"name": "Free", | ||
"family": null, | ||
"capacity": null | ||
}, | ||
"state": "Ok", | ||
"creationTime": "2017-03-26T01:13:43.267+00:00", | ||
"lastModifiedBy": "[email protected]", | ||
"lastModifiedTime": "2017-03-26T01:13:43.267+00:00" | ||
} | ||
} | ||
}, | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"name": "ContoseAutomationAccount", | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount9", | ||
"type": "Microsoft.Automation/AutomationAccounts", | ||
"location": "East US 2", | ||
"tags": {}, | ||
"etag": null, | ||
"properties": { | ||
"sku": { | ||
"name": "Free", | ||
"family": null, | ||
"capacity": null | ||
}, | ||
"state": "Ok", | ||
"creationTime": "2017-03-28T18:21:15.187+00:00", | ||
"lastModifiedBy": "[email protected]", | ||
"lastModifiedTime": "2017-03-28T18:21:15.187+00:00" | ||
} | ||
} | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
arm-automation/2015-10-31/examples/account/deleteAutomationAccount.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg", | ||
"automationAccountName": "myAutomationAccount9", | ||
"api-version": "2015-10-31" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
arm-automation/2015-10-31/examples/account/deleteNonExisitingAutomationAccount.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg", | ||
"automationAccountName": "myAutomationAccount9", | ||
"api-version": "2015-10-31" | ||
}, | ||
"responses": { | ||
"204": { | ||
"headers": {}, | ||
"body": {} | ||
} | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
arm-automation/2015-10-31/examples/account/getAutomationAccount.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg", | ||
"automationAccountName": "myAutomationAccount9", | ||
"api-version": "2015-10-31" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"name": "myAutomationAccount9", | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount9", | ||
"type": "Microsoft.Automation/AutomationAccounts", | ||
"location": "East US 2", | ||
"tags": {}, | ||
"etag": null, | ||
"properties": { | ||
"sku": { | ||
"name": "Free", | ||
"family": null, | ||
"capacity": null | ||
}, | ||
"state": "Ok", | ||
"creationTime": "2017-03-26T01:13:43.267+00:00", | ||
"lastModifiedBy": "[email protected]", | ||
"lastModifiedTime": "2017-03-26T01:13:43.267+00:00" | ||
} | ||
} | ||
} | ||
} | ||
} |
108 changes: 108 additions & 0 deletions
108
arm-automation/2015-10-31/examples/account/getStatisticsOfAutomationAccount.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg", | ||
"automationAccountName": "myAutomationAccount11", | ||
"api-version": "2015-10-31" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/New", | ||
"counterProperty": "New", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Activating", | ||
"counterProperty": "Activating", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Running", | ||
"counterProperty": "Running", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Completed", | ||
"counterProperty": "Completed", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Failed", | ||
"counterProperty": "Failed", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Stopped", | ||
"counterProperty": "Stopped", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Blocked", | ||
"counterProperty": "Blocked", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Suspended", | ||
"counterProperty": "Suspended", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Disconnected", | ||
"counterProperty": "Disconnected", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Suspending", | ||
"counterProperty": "Suspending", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Stopping", | ||
"counterProperty": "Stopping", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Resuming", | ||
"counterProperty": "Resuming", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
}, | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg/providers/Microsoft.Automation/automationAccounts/myAutomationAccount11/statistics/Removing", | ||
"counterProperty": "Removing", | ||
"counterValue": 0, | ||
"startTime": "2017-03-19T02:11:49.9879197+00:00", | ||
"endTime": "2017-03-26T02:11:49.9879197+00:00" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
47 changes: 47 additions & 0 deletions
47
arm-automation/2015-10-31/examples/account/getUsagesOfAutomationAccount.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg", | ||
"automationAccountName": "myAutomationAccount11", | ||
"api-version": "2015-10-31" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": {}, | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": { | ||
"value": "AccountUsage", | ||
"localizedValue": "AccountUsage" | ||
}, | ||
"unit": "Minute", | ||
"currentValue": 0.0, | ||
"limit": 500, | ||
"throttleStatus": "NotThrottled" | ||
}, | ||
{ | ||
"name": { | ||
"value": "SubscriptionUsage", | ||
"localizedValue": "SubscriptionUsage" | ||
}, | ||
"unit": "Minute", | ||
"currentValue": 429.0, | ||
"limit": 500, | ||
"throttleStatus": "NotThrottled" | ||
}, | ||
{ | ||
"name": { | ||
"value": "DscSubscriptionUsage", | ||
"localizedValue": "DscSubscriptionUsage" | ||
}, | ||
"unit": "Count", | ||
"currentValue": 8.0, | ||
"limit": 5, | ||
"throttleStatus": "ThrottledAtSubscriptionLevel" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.