-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Initial code to sign user in and wire up the credentials in a sample storage command #3
Conversation
<InterpreterVersion> | ||
</InterpreterVersion> | ||
<EnableNativeCodeDebugging>False</EnableNativeCodeDebugging> | ||
<Environment>PYTHONPATH=c:\sdk\azure-cli\src</Environment> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please avoid using absolute paths that are unique to your environment/setup.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i have reverted, i should not have checked this in at the first place.
We should make a universal determination regarding providing the code log or not. I would prefer to keep it for now, but I don't have a strong preference here. |
One thing bothering me is this will print out the credential to the log file. Also logging code will get dominating for complex VM api, and thus make the main code flow harder to read. My experience, is most diagnostic can be accomplished by either verbose logging, or proxy tools such as fiddler. |
def get_credentials(self): | ||
sub = [x for x in CONFIG['subscriptions'] if x['active'] == True ] | ||
|
||
if not sub and subscriptions: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will subscriptions be defined here?
Initial code to sign user in and wire up the credentials in a sample storage command
- Also, the dev versions have all command modules installed by default - If the user really wants to install another module, from some unknown location, they can use pip directly - * pip doesn’t support mixing editable packages with regular packages * pip install --editable and pip install clash for namespace packages #3 pypa/pip#3 And, Fix nightly build version patching as well
- Also, the dev versions have all command modules installed by default - If the user really wants to install another module, from some unknown location, they can use pip directly - * pip doesn’t support mixing editable packages with regular packages * pip install --editable and pip install clash for namespace packages #3 pypa/pip#3 And, Fix nightly build version patching as well
* adding cluster admin option to osa create * adding direcctory read permissions to the aad app (#1) * adding cluster admin option to osa create * adding direcctory read permissions to the aad app * making active directory app always require directory permissions * infra node to 3 * adding new version of python sdk (#3) * adding cluster admin option to osa create * adding direcctory read permissions to the aad app * making app always require directory permissions * clean + infra node to 3 * fixing typo * using new version of acs python sdk * updating history.rst * Change type from scope to role * apply review * pep fix * fix merge conflict * update history and help * update recorded aks tests * Revert "update recorded aks tests" This reverts commit 8643736. * change api version for tests
testcode and some params change
* add secret crud test * Add cutom domain test Co-authored-by: Chenglong Liu <chengll@microsoft.com>
…arameter changes (#20682) * DPS track 2 updates * Dps track 2 core changes (#3) * Change rg to be optional Deprecate access-policy to policy Add hub name parameter options to linked hub Bucket arguments * support name or host name in linked hub * update wording to have DPS later * update expiration * Added key filter on DPS tests and re-recorded * Linter and param fixes * Fixed up extra key in tests * Use more specific CLI error types * Added comments to sharedaccesskey processor regex Co-authored-by: Ryan Kelly <rykelly@microsoft.com> Co-authored-by: Victoria Litvinova <73560279+vilit1@users.noreply.github.com>
No description provided. |
[Add] Add command group `microsoft.compute/virtualmachines`
* Update SDK version * Update sdk version in setup * add flush command * test flush command * fix linting/code style failures * Add aad enablement test * Add access policy * Add access policy assignments * Add scneario test * Comment out update test * Comment edit * Adds update channel commands and tests (#3) * Add test for update channel * Add argument to cli * Az style fix * Update time for update channel test * Revert change to time for udpate channel * Kj/release 2023 08 01 (#4) * Add test for update channel * Add argument to cli * Az style fix * Update time for update channel test * Revert change to time for udpate channel * Add parameters for update channel * Redis scenario test * Fix spelling * Update test for update channel * Re run pipeline * Fix requirements for windows * Handle linter issues * Push recordings * Push aad recording * Add export import recording * Add update recordings * Cred scan * Cred scan * Add network recordings * Update help text * Update access policy assignment param * Update help text * Address review comments * Linter check Co-authored-by: Yishi Wang <yishiwang@microsoft.com> * Update help text --------- Co-authored-by: Kanchan Joshi <kanchanjoshi@microsoft.com> Co-authored-by: Austin Tolani <austintolani@microsoft.com> Co-authored-by: Oscar Barbosa Aquino <32723476+Darfeikus@users.noreply.github.com> Co-authored-by: Yishi Wang <yishiwang@microsoft.com>
Merging it in to unblock colleagues' work. I will follow up with tests soon.