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.
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
Expose sku and managed identity for GA #11795
Expose sku and managed identity for GA #11795
Changes from 4 commits
b6db469
341fc00
a3251b7
a764e67
b0bf46d
1ff77a2
249ddfe
9431bf6
3ce80fb
dd24ba7
0a850ea
5e8c32d
40fd252
ad60331
08a473b
1dfc586
f8f5e4e
1d8c382
1585a52
0756703
f7b79fe
4b7e76e
c2f6f01
ddb9c64
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
nit: " ....an existing App Configuration". Same for all 3 examples.
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.
sure thing
In reply to: 364512736 [](ancestors = 364512736)
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.
nit: myUserAssignedIdentity
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.
Are we planning to add more arguments like role and scope to this group in future? If not, does it make sense to not have a separate arg_group for this?
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.
We may keep adding arguments for store creation, but not for scoping identities. This should be done in "az role". The assign_identity means we want to create a system assigned or associate a user assigned identity to this configuration store. The scope of the identity won't be modified here.
In reply to: 364511654 [](ancestors = 364511654)
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.
Got it. In that case, should we put this single argument in a separate arg_group?
In reply to: 364520390 [](ancestors = 364520390,364511654)
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.
We don't actually need the arg_group.
In reply to: 364525333 [](ancestors = 364525333,364520390,364511654)
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.
Also add params and help for appconfig identity show #Resolved
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.
all commands under "appconfig identity" command group will inherit self.argument_context('appconfig identity'), similarly it will also inherit self.argument_context('appconfig'). Since identity show doesn't introduce arguments with different specification, we don't need to specify it here.
In reply to: 364511385 [](ancestors = 364511385)
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.
This case should only be valid for the remove identity command right? #Resolved
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.
Yes. there is a validation in assign_identity to exlcude '[all]'. We can have two validators for assign and remove identity, but they will be very similar except for '[all]' check.
In reply to: 364514597 [](ancestors = 364514597)