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
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,11 @@
23
23
## Upcoming Release
24
24
25
25
* Authentication
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
+
* 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
26
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
+
* Product Upgrades
30
+
* Addressed an issue with starting the upgrade process for an Azure Plan
27
31
* Subscription
28
32
* Added the `PartnerId` parameter to the [Set-PartnerCustomerSubscription](https://docs.microsoft.com/powershell/module/partnercenter/Set-PartnerCustomerSubscription) command
29
33
* Addressed issue [#228](https://github.com/microsoft/Partner-Center-PowerShell/issues/228) that was causing issues with enabling and suspend an Azure subscription that is part of an Azure Plan
Registers the specified token cache for the module.
29
+
30
+
## EXAMPLES
31
+
32
+
### Example 1
33
+
```powershell
34
+
PS C:\> Register-PartnerTokenCache -InMemory
35
+
```
36
+
37
+
Registers the in-memory token cache for the module.
38
+
39
+
### Example 2
40
+
```powershell
41
+
PS C:\> Register-PartnerTokenCache -Persistent
42
+
```
43
+
44
+
Registers the persistent token cache for the module.
45
+
46
+
## PARAMETERS
47
+
48
+
### -InMemory
49
+
A flag indicating that the in-memory token cache should be registered.
50
+
51
+
```yaml
52
+
Type: SwitchParameter
53
+
Parameter Sets: ByInMemory
54
+
Aliases:
55
+
56
+
Required: True
57
+
Position: Named
58
+
Default value: None
59
+
Accept pipeline input: False
60
+
Accept wildcard characters: False
61
+
```
62
+
63
+
### -Persistent
64
+
A flag indicating that the persistent token cache should be registered.
65
+
66
+
```yaml
67
+
Type: SwitchParameter
68
+
Parameter Sets: ByPersistent
69
+
Aliases:
70
+
71
+
Required: True
72
+
Position: Named
73
+
Default value: None
74
+
Accept pipeline input: False
75
+
Accept wildcard characters: False
76
+
```
77
+
78
+
### CommonParameters
79
+
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