You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: ChangeLog.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,9 @@
26
26
* Added the [Register-PartnerTokenCache](https://docs.microsoft.com/powershell/module/partnercenter/Register-PartnerTokenCache) to create, and delete, the control file that determines if a in-memory token cache should be used instead of the default persistent token cache
27
27
* Addressed an issue where an InvalidOperationException exception was being encountering with the [Connect-PartnerCenter](https://docs.microsoft.com/powershell/module/partnercenter/New-PartnerAccessToken) and [New-PartnerAccessToken](https://docs.microsoft.com/powershell/module/partnercenter/New-PartnerAccessToken) commands when specifying an environment
28
28
* Addressed issue [#234](https://github.com/microsoft/Partner-Center-PowerShell/issues/234) that was preventing the [New-PartnerAccessToken](https://docs.microsoft.com/powershell/module/partnercenter/New-PartnerAccessToken) command from executing successfully when being invoked through an Azure Function app
29
+
* Invoice
30
+
* Added the [Get-PartnerUnbilledInvoiceLineItem](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerUnbilledInvoiceLineItem) command to get unbilled invoice line items
31
+
* Removed the `Period` parameter from the [Get-PartnerInvoiceLineItem](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerInvoiceLineItem) command because the functionality it enabled has been replaced with the [Get-PartnerUnbilledInvoiceLineItem](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerUnbilledInvoiceLineItem) command
29
32
* Product Upgrades
30
33
* Addressed an issue with starting the upgrade process for an Azure Plan
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
123
100
@@ -127,7 +104,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
Gets reconciliation line items for the pervious billing period that have not been billed. The pervious billing period is defined as the pervious month.
40
+
41
+
### Example 3
42
+
```powershell
43
+
PS C:\> Get-PartnerUnbilledInvoiceLineItem -CurrencyCode USD -LineItemType UsageLineItems -Period Current
44
+
```
45
+
46
+
Gets consumption line items for the current billing period that have not been billed. The current billing period is defined as the current month.
Gets consumption line items for the pervious billing period that have not been billed. The pervious billing period is defined as the pervious month.
54
+
55
+
## PARAMETERS
56
+
57
+
### -CurrencyCode
58
+
The currency code for the unbilled line items.
59
+
60
+
```yaml
61
+
Type: String
62
+
Parameter Sets: (All)
63
+
Aliases:
64
+
65
+
Required: True
66
+
Position: Named
67
+
Default value: None
68
+
Accept pipeline input: False
69
+
Accept wildcard characters: False
70
+
```
71
+
72
+
### -LineItemType
73
+
The type of invoice line items.
74
+
75
+
```yaml
76
+
Type: InvoiceLineItemType
77
+
Parameter Sets: (All)
78
+
Aliases:
79
+
Accepted values: BillingLineItems, UsageLineItems
80
+
81
+
Required: True
82
+
Position: Named
83
+
Default value: None
84
+
Accept pipeline input: False
85
+
Accept wildcard characters: False
86
+
```
87
+
88
+
### -Period
89
+
The billing period for the line items.
90
+
91
+
```yaml
92
+
Type: BillingPeriod
93
+
Parameter Sets: (All)
94
+
Aliases:
95
+
Accepted values: Current, Previous
96
+
97
+
Required: True
98
+
Position: Named
99
+
Default value: None
100
+
Accept pipeline input: False
101
+
Accept wildcard characters: False
102
+
```
103
+
104
+
### CommonParameters
105
+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
0 commit comments