Skip to content

Commit

Permalink
FixS360 | Microsoft.Billing (Azure#13771)
Browse files Browse the repository at this point in the history
* fixing billing accounts and operations

* adding total count.

* typo fix

* fixing spell check and prettier
  • Loading branch information
muazmian authored and dabenhamMic committed May 4, 2021
1 parent c18296e commit 26f718b
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3712,6 +3712,12 @@
"$ref": "#/definitions/Customer"
}
},
"totalCount": {
"description": "Total number of records.",
"type": "number",
"format": "int32",
"readOnly": true
},
"nextLink": {
"description": "The link (url) to the next page of results.",
"type": "string",
Expand Down Expand Up @@ -4005,6 +4011,10 @@
"description": "Indicates whether user has read access to the billing account.",
"type": "boolean",
"readOnly": true
},
"notificationEmailAddress": {
"description": "Notification email address, only for legacy accounts",
"type": "string"
}
}
},
Expand Down Expand Up @@ -4229,7 +4239,7 @@
"type": "boolean",
"readOnly": true
},
"marketplacesEnabled": {
"marketplaceEnabled": {
"description": "The policy that controls whether Azure marketplace purchases are allowed in the enrollment.",
"type": "boolean",
"readOnly": true
Expand Down Expand Up @@ -4312,6 +4322,10 @@
"description": "The owner of the enrollment account.",
"type": "string"
},
"accountOwnerEmail": {
"description": "The enrollment account owner email address.",
"type": "string"
},
"status": {
"description": "The status of the enrollment account.",
"type": "string"
Expand Down Expand Up @@ -4576,6 +4590,14 @@
"items": {
"$ref": "#/definitions/TargetCloud"
}
},
"tags": {
"description": "Tags of billing profiles.",
"type": "object",
"additionalProperties": {
"type": "string"
},
"maxItems": 1000
}
}
},
Expand Down Expand Up @@ -4607,6 +4629,10 @@
"description": "First name.",
"type": "string"
},
"middleName": {
"description": "Middle name.",
"type": "string"
},
"lastName": {
"description": "Last name.",
"type": "string"
Expand Down Expand Up @@ -4694,6 +4720,12 @@
"$ref": "#/definitions/InvoiceSection"
}
},
"totalCount": {
"description": "Total number of records.",
"type": "number",
"format": "int32",
"readOnly": true
},
"nextLink": {
"description": "The link (url) to the next page of results.",
"type": "string",
Expand Down Expand Up @@ -5532,6 +5564,12 @@
"$ref": "#/definitions/BillingSubscription"
}
},
"totalCount": {
"description": "Total number of records.",
"type": "number",
"format": "int32",
"readOnly": true
},
"nextLink": {
"description": "The link (url) to the next page of results.",
"type": "string",
Expand Down Expand Up @@ -6057,6 +6095,11 @@
"type": "string",
"readOnly": true
},
"isDataAction": {
"description": "Identifies if the operation is a data operation.",
"type": "boolean",
"readOnly": true
},
"display": {
"description": "The object that represents the operation.",
"properties": {
Expand All @@ -6074,6 +6117,11 @@
"description": "Operation type such as read, write and delete.",
"type": "string",
"readOnly": true
},
"description": {
"description": "Description of operation.",
"type": "string",
"readOnly": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"policies": {
"accountOwnerViewCharges": true,
"departmentAdminViewCharges": true,
"marketplacesEnabled": true,
"marketplaceEnabled": true,
"reservedInstancesEnabled": true
}
},
Expand Down

0 comments on commit 26f718b

Please sign in to comment.