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
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,22 @@
20
20
21
21
# Change Log
22
22
23
+
## 2.0.1911.4
24
+
25
+
* Azure
26
+
* Added the [Get-PartnerAzureBillingAccount](https://docs.microsoft.com/powershell/module/partnercenter/get-partnerazurebillingaccount) command to get billing accounts where the authenticated user has access
27
+
* Added the [Get-PartnerAzureBillingProfile](https://docs.microsoft.com/powershell/module/partnercenter/get-partnerazurebillingprofile) to get billing profiles for specified billing account
28
+
* Added the [New-PartnerAzureSubscription](https://docs.microsoft.com/powershell/module/partnercenter/new-partnerazuresubscription) to create a new Azure subscription for Microsoft Partner Agreement billing account.
29
+
* Security
30
+
* Updated the [Get-PartnerUser](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerProductUpgrade) command to ensure all user accounts are returned
31
+
* Updated the [Get-PartnerUserSignActivity](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerUserSignActivity) command to ensure all user sign-in activities are returned
32
+
23
33
## 2.0.1911.3
24
34
25
35
* Authentication
26
-
* Addressed issue preventing the [Test-PartnerSecurityRequirement](https://docs.microsoft.com/powershell/module/partnercenter/test-partnersecurityrequirement) command from working as expected
27
36
* Addressed issue [#186](https://github.com/microsoft/Partner-Center-PowerShell/issues/186) that was preventing access token from being generated when using the device code flow
37
+
* Security
38
+
* Addressed issue preventing the [Test-PartnerSecurityRequirement](https://docs.microsoft.com/powershell/module/partnercenter/test-partnersecurityrequirement) command from working as expected
28
39
29
40
## 2.0.1911.2
30
41
@@ -41,14 +52,14 @@
41
52
* Modified the type for the *AdditionalInfo* and *Tags* properties from string to *Dictionary<string, string>*
42
53
*[One Time Invoice Line Item](https://github.com/microsoft/Partner-Center-PowerShell/blob/master/src/PowerShell/Models/Invoices/PSOneTimeInvoiceLineItem.cs)
43
54
* Added the *BillableQuantity*, *MeterDescription*, *PCToBCExchangeRateDate*, *PCToBCExchangeRate*, *PriceAdjustmentDescription*, and *PricingCurrency* properties
44
-
* Partner
45
-
* Added the [Get-PartnerUser](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerProductUpgrade) command to get partner user accounts
46
-
* Added the [Get-PartnerUserSignActivity](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerUserSignActivity) command to get sign-in activities for the specified user account
47
55
* Product Upgrades
48
56
* Added the [Get-PartnerProductUpgrade](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerProductUpgrade) command to get information on product upgrades for the specified customer
49
57
* Added the [Get-PartnerProductUpgradeEligibility](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerProductUpgrade) command to determine if the specified customer has a product eligible for an upgrade
50
58
* Added the [Get-PartnerProductUpgradeStatus](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerProductUpgradeStatus) command to get the status for product upgrades for the specified customer
51
59
* Added the [New-PartnerProductUpgrade](https://docs.microsoft.com/powershell/module/partnercenter/New-PartnerProductUpgrade) command to perform an upgrade for the specified customer
60
+
* Security
61
+
* Added the [Get-PartnerUser](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerProductUpgrade) command to get partner user accounts
62
+
* Added the [Get-PartnerUserSignActivity](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerUserSignActivity) command to get sign-in activities for the specified user account
52
63
* Subscriptions
53
64
* Added the [Get-PartnerCustomerAzurePlanEntitlement](https://docs.microsoft.com/powershell/module/partnercenter/Get-PartnerCustomerAzurePlanEntitlement) command to get entitlement information for an Azure Plan
Gets the billing accounts where the authenticated user has access.
23
+
24
+
## EXAMPLES
25
+
26
+
### Example 1
27
+
```powershell
28
+
PS C:\> Get-PartnerAzureBillingAccount
29
+
```
30
+
31
+
Gets the billing accounts where the authenticated user has access.
32
+
33
+
## PARAMETERS
34
+
35
+
### CommonParameters
36
+
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).
Gets the billing profiles for specified billing account.
32
+
33
+
## PARAMETERS
34
+
35
+
### -BillingAccountName
36
+
The name for the billing account
37
+
38
+
```yaml
39
+
Type: String
40
+
Parameter Sets: (All)
41
+
Aliases:
42
+
43
+
Required: True
44
+
Position: Named
45
+
Default value: None
46
+
Accept pipeline input: False
47
+
Accept wildcard characters: False
48
+
```
49
+
50
+
### CommonParameters
51
+
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).
Creates a new Azure subscription for Microsoft Partner Agreement billing account.
33
+
34
+
## PARAMETERS
35
+
36
+
### -BillingAccountName
37
+
The name for the billing account.
38
+
39
+
```yaml
40
+
Type: String
41
+
Parameter Sets: (All)
42
+
Aliases:
43
+
44
+
Required: True
45
+
Position: Named
46
+
Default value: None
47
+
Accept pipeline input: False
48
+
Accept wildcard characters: False
49
+
```
50
+
51
+
### -CustomerName
52
+
The name for the customer.
53
+
54
+
```yaml
55
+
Type: String
56
+
Parameter Sets: (All)
57
+
Aliases:
58
+
59
+
Required: True
60
+
Position: Named
61
+
Default value: None
62
+
Accept pipeline input: False
63
+
Accept wildcard characters: False
64
+
```
65
+
66
+
### -DisplayName
67
+
The display for the subscription.
68
+
69
+
```yaml
70
+
Type: String
71
+
Parameter Sets: (All)
72
+
Aliases:
73
+
74
+
Required: True
75
+
Position: Named
76
+
Default value: None
77
+
Accept pipeline input: False
78
+
Accept wildcard characters: False
79
+
```
80
+
81
+
### -ResellerId
82
+
The identifier for the indirect reseller.
83
+
84
+
```yaml
85
+
Type: String
86
+
Parameter Sets: (All)
87
+
Aliases:
88
+
89
+
Required: False
90
+
Position: Named
91
+
Default value: None
92
+
Accept pipeline input: False
93
+
Accept wildcard characters: False
94
+
```
95
+
96
+
### CommonParameters
97
+
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