-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Billing Account resource to Billing RP. #2517
Merged
jhendrixMSFT
merged 12 commits into
Azure:master
from
wilcobmsft:wilcob/classicAccounts
Feb 28, 2018
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
0b3def4
Add "Classic Account" ARM resource.
wilcobmsft 7c0c079
1. Change classic account property name from "userPrincipalName" to "…
wilcobmsft 53eef4c
Fix API version in examples.
wilcobmsft 4b5df9c
Add example links.
wilcobmsft 2569867
ClassicAccount->BillingAccount
wilcobmsft b5b2334
Removing "uuid" - billing account name may be a concatenation of uuid…
wilcobmsft 6741cc1
Remove unused parameters.
wilcobmsft 2c8ea6e
1. Add new version to readme.md
wilcobmsft ad02392
Fix descriptions.
wilcobmsft 2fe6680
Fix type mismatch error.
wilcobmsft ab8a8cd
Adding missing parameter in example.
wilcobmsft 0d64bb2
Fix ms-examples name.
wilcobmsft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
699 changes: 699 additions & 0 deletions
699
...cation/billing/resource-manager/Microsoft.Billing/preview/2018-03-01-preview/billing.json
Large diffs are not rendered by default.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
...rce-manager/Microsoft.Billing/preview/2018-03-01-preview/examples/BillingAccountsGet.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,18 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-03-01-preview", | ||
"name": "e1bf1c8c-5ac6-44a0-bdcd-aa7c1cf60556" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/providers/Microsoft.Billing/billingAccounts/e1bf1c8c-5ac6-44a0-bdcd-aa7c1cf60556", | ||
"name": "e1bf1c8c-5ac6-44a0-bdcd-aa7c1cf60556", | ||
"type": "Microsoft.Billing/billingAccounts", | ||
"properties": { | ||
"principalName": "kathy@contoso.com" | ||
} | ||
} | ||
} | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
...ce-manager/Microsoft.Billing/preview/2018-03-01-preview/examples/BillingAccountsList.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,29 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-03-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/providers/Microsoft.Billing/billingAccounts/e1bf1c8c-5ac6-44a0-bdcd-aa7c1cf60556", | ||
"name": "e1bf1c8c-5ac6-44a0-bdcd-aa7c1cf60556", | ||
"type": "Microsoft.Billing/billingAccounts", | ||
"properties": { | ||
"principalName": "kathy@contoso.com" | ||
} | ||
}, | ||
{ | ||
"id": "/providers/Microsoft.Billing/billingAccounts/edd24053-07cd-4ed4-aa5b-326160a6680d", | ||
"name": "edd24053-07cd-4ed4-aa5b-326160a6680d", | ||
"type": "Microsoft.Billing/billingAccounts", | ||
"properties": { | ||
"principalName": "dan@contoso.com" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
...urce-manager/Microsoft.Billing/preview/2018-03-01-preview/examples/BillingPeriodsGet.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,24 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-03-01-preview", | ||
"subscriptionId": "subid", | ||
"billingPeriodName": "201702-1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201702-1", | ||
"name": "201702-1", | ||
"type": "Microsoft.Billing/billingPeriods", | ||
"properties": { | ||
"billingPeriodStartDate": "2017-01-01", | ||
"billingPeriodEndDate": "2017-02-01", | ||
"invoiceIds": [ | ||
"/subscriptions/subid/providers/Microsoft.Billing/invoices/2017-02-05-123456789", | ||
"/subscriptions/subid/providers/Microsoft.Billing/invoices/2017-01-05-987654321" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...rce-manager/Microsoft.Billing/preview/2018-03-01-preview/examples/BillingPeriodsList.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,27 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-03-01-preview", | ||
"subscriptionId": "subid" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201702-1", | ||
"name": "201702-1", | ||
"type": "Microsoft.Billing/billingPeriods", | ||
"properties": { | ||
"billingPeriodStartDate": "2017-01-01", | ||
"billingPeriodEndDate": "2017-02-01", | ||
"invoiceIds": [ | ||
"/subscriptions/subid/providers/Microsoft.Billing/invoices/2017-02-05-123456789", | ||
"/subscriptions/subid/providers/Microsoft.Billing/invoices/2017-01-05-987654321" | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...esource-manager/Microsoft.Billing/preview/2018-03-01-preview/examples/InvoicesExpand.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,34 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-03-01-preview", | ||
"subscriptionId": "subid", | ||
"$top": 1, | ||
"$filter": "invoicePeriodStartDate le 2017-02-01", | ||
"$expand": "downloadUrl" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/subid/providers/Microsoft.Billing/invoices/2017-02-05-123456789", | ||
"name": "2017-02-05-123456789", | ||
"type": "Microsoft.Billing/invoices", | ||
"properties": { | ||
"invoicePeriodStartDate": "2017-01-01", | ||
"invoicePeriodEndDate": "2017-02-01", | ||
"billingPeriodIds": [ | ||
"/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201702-1", | ||
"/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201701-1" | ||
], | ||
"downloadUrl": { | ||
"expiryTime": "2017-02-13T20:46:30Z", | ||
"url": "https://microsoft.com" | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
...g/resource-manager/Microsoft.Billing/preview/2018-03-01-preview/examples/InvoicesGet.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,28 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-03-01-preview", | ||
"subscriptionId": "subid", | ||
"invoiceName": "2017-02-05-123456789" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/subid/providers/Microsoft.Billing/invoices/2017-02-05-123456789", | ||
"name": "2017-02-05-123456789", | ||
"type": "Microsoft.Billing/invoices", | ||
"properties": { | ||
"invoicePeriodStartDate": "2017-01-01", | ||
"invoicePeriodEndDate": "2017-02-01", | ||
"billingPeriodIds": [ | ||
"/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201702-1", | ||
"/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201701-1" | ||
], | ||
"downloadUrl": { | ||
"expiryTime": "2017-02-13T20:46:30Z", | ||
"url": "https://microsoft.com" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...urce-manager/Microsoft.Billing/preview/2018-03-01-preview/examples/InvoicesGetLatest.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,27 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-03-01-preview", | ||
"subscriptionId": "subid" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/subid/providers/Microsoft.Billing/invoices/2017-02-05-123456789", | ||
"name": "2017-02-05-123456789", | ||
"type": "Microsoft.Billing/invoices", | ||
"properties": { | ||
"invoicePeriodStartDate": "2017-01-01", | ||
"invoicePeriodEndDate": "2017-02-01", | ||
"billingPeriodIds": [ | ||
"/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201702-1", | ||
"/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201701-1" | ||
], | ||
"downloadUrl": { | ||
"expiryTime": "2017-02-13T20:46:30Z", | ||
"url": "https://microsoft.com" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
.../resource-manager/Microsoft.Billing/preview/2018-03-01-preview/examples/InvoicesList.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,27 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-03-01-preview", | ||
"subscriptionId": "subid" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/subid/providers/Microsoft.Billing/invoices/2017-02-05-123456789", | ||
"name": "2017-02-05-123456789", | ||
"type": "Microsoft.Billing/invoices", | ||
"properties": { | ||
"invoicePeriodStartDate": "2017-01-01", | ||
"invoicePeriodEndDate": "2017-02-01", | ||
"billingPeriodIds": [ | ||
"/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201702-1", | ||
"/subscriptions/subid/providers/Microsoft.Billing/billingPeriods/201701-1" | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Required parameter "get" is missing, see the log.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.