-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
[ApiManagement] Secure Parameter for Cmdlets #4819
Closed
Closed
Conversation
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
[ADLA] * Changed one of the two OutputTypes of Get-AzureRmDataLakeAnalyticsAccount - List<DataLakeAnalyticsAccount> to List<PSDataLakeAnalyticsAccountBasic> - The properties of PSDataLakeAnalyticsAccountBasic is a strict subset of the properties of DataLakeAnalyticsAccount - The additional properties that are in DataLakeAnalyticsAccount are not returned by the service. Therefore, this change is to reflect this accurately. * Changed one of the two OutputTypes of Get-AzureRmDataLakeAnalyticsJob - List<JobInformation> to List<PSJobInformationBasic> - The properties of PSJobInformationBasic is a strict subset of the properties of JobInformation - The additional properties that are in JobInformation are not returned by the service. Therefore, this change is to reflect this accurately. * Updated the cmdlet logic of Submit-AzureRmDataLakeAnalyticsJob because SubmitJob and BuildJob now require an explicit parameter object rather than the generic JobInformation object * Removed the Obsolete Properties fields in PSDataLakeAnalyticsAccount.cs and its assoicated files [ADLS] * Changed one of the two OutputTypes of Get-AzureRmDataLakeStoreAccount - List<PSDataLakeStoreAccount> to List<PSDataLakeStoreAccountBasic> - The properties of PSDataLakeStoreAccountBasic is a strict subset of the properties of PSDataLakeStoreAccount - The additional properties that are in PSDataLakeStoreAccount are not returned by the service. Therefore, this change is to reflect this accurately. * Removed the Obsolete Properties fields in PSDataLakeStoreAccount.cs and its assoicated files
* Removing these from csproj files and packages.config
13 tasks
This pull request got commits from some other branch. Closing this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Breaking Changes in Cmdlet to Manage Api Management Users [Nov Release] Update Cmdlets to use SecureString and PsCredentialType #4595
Password
is changed from String to SecureStringPassword
is changed from String to SecureStringBreaking Changes in Cmdlet to Create Backend Proxy Object
Password
andUserName
has been replaced withProxyCredentials
of type PSCredentialUpdated Cmdlet Get-AzureRmApiManagementUser to fix issue Get-AzureRmApiManagementUser - Parameter set name 'Find users' is not supported #4510
Updated Cmdlet New-AzureRmApiManagementApi to create Api with Empty Path New-AzureRmApiManagement should allow creating API with Empty Path #4069
Updated documentation for issue Get-AzureRmApiManagementSubscription ByProduct does not return same Type consistently #4676
This checklist is used to make sure that common guidelines for a pull request are followed. You can find a more complete discussion of PowerShell cmdlet best practices here.
General Guidelines
Testing Guidelines
Cmdlet Signature Guidelines
ShouldProcess
and haveSupportShouldProcess=true
specified in the cmdlet attribute. You can find more information onShouldProcess
here.OutputType
attribute if any output is produced - if the cmdlet produces no output, it should implement aPassThru
parameter.Cmdlet Parameter Guidelines