This repository was archived by the owner on Jan 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Tests ARM, test case for listing available operations #713
Closed
Closed
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
ba3d4ac
Tests ARM, test case for listing available operations.
v-hongli1 15ef204
Fixed comment https://github.com/Azure/cadl-ranch/pull/713#discussion…
v-hongli1 4e639a8
Fixed comment https://github.com/Azure/cadl-ranch/pull/713#discussion…
v-hongli1 cddc6c6
refactor(spec): add uint8 for int encoding and templatize (#711)
archerzz 5ce7d91
Fixed comment https://github.com/Azure/cadl-ranch/pull/713#discussion…
v-hongli1 eb4a5c4
Change `ListingAvailableOperations` to `AvailableOperations`.
v-hongli1 2542f16
Fix comment https://github.com/Azure/cadl-ranch/pull/713#discussion_r…
v-hongli1 64bfab0
Fix comment https://github.com/Azure/cadl-ranch/pull/713#discussion_r…
v-hongli1 606273c
Merge branch 'main' into issues#688
v-hongli1 fbbe06a
Merge branch 'main' into issues#688
v-hongli1 fe78251
Merge branch 'main' into issues#688
v-hongli1 936e899
Merge branch 'main' into issues#688
v-hongli1 b3bf581
Merge branch 'main' into issues#688
v-hongli1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@azure-tools/cadl-ranch-specs": patch | ||
--- | ||
|
||
Tests ARM, test case for listing available operations |
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
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
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
Oops, something went wrong.
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.
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.
is this to list which resources are available? or are you looking for available operations on a resource? I'm confused by the name. What about
Azure_ResourceManager_Resources_ListAvailable
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.
It's for listing all available operations for an RP, not for a particular resource or resource type.
Reason for putting it under
Resources
, is that it's a common interface(API) for almost all RPs, and it only has one scenario, which isinterface Operations extends Azure.ResourceManager.Operations {}
. I'm not sure it's worth a separate folder/file.