-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Remove useref and Fleet update changes #29493
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
Merged
Merged
Changes from 17 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
2293fca
Remove useref and Fleet update changes
d715112
Remove useref
fa8a914
fix spell check
1c5b140
Fix validation errors
27ad781
suppress casing errors
29c1092
Fix formatting
401e566
Refactor
43cf0f4
Remove Fleet Forbidden values
84d6157
Add additional property suppression.
ce2786d
edit suppressions
f557502
Add Suppression for camel casing
f7ffca0
Make confidential fields to have create and update visibility only.
1be10aa
Merge branch 'main' into update-azurefleet-useref-and-scvmm
1f08689
update docs
6883950
remove format decorator and use url type
31bffb4
Merge branch 'main' into update-azurefleet-useref-and-scvmm
c39e954
Merge branch 'main' into update-azurefleet-useref-and-scvmm
msyyc c1cfc08
Address comments
81f8c12
revert settings change as it is visible.
d3ecaad
Address comments
b6a0f63
configReference is visible in response.
c35779f
Add arm-id format to resource ids
52f6c72
Address comments
372ee03
update provisioningState in examples
9704381
update examples
1dfaf26
Merge branch 'main' into update-azurefleet-useref-and-scvmm
4ac7e1f
Update location in examples
12a9609
Update example
8066c15
Update security posture reference to the latest compute api version.
fed0a29
Merge branch 'main' into update-azurefleet-useref-and-scvmm
3e52d47
Fix merge conflicts
c73bd48
Update and add more examples
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
2,518 changes: 2,518 additions & 0 deletions
2,518
specification/azurefleet/AzureFleet.Management/baseVirtualMachineProfile.tsp
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,19 +1,44 @@ | ||
| import "@typespec/http"; | ||
| import "@typespec/rest"; | ||
| import "@typespec/versioning"; | ||
| import "@azure-tools/typespec-autorest"; | ||
| import "@azure-tools/typespec-azure-core"; | ||
| import "@azure-tools/typespec-azure-resource-manager"; | ||
|
|
||
| using TypeSpec.Http; | ||
| using TypeSpec.Rest; | ||
| using TypeSpec.Versioning; | ||
| using Autorest; | ||
| using Azure.ResourceManager; | ||
| using OpenAPI; | ||
|
|
||
| namespace Microsoft.AzureFleet; | ||
|
|
||
| @doc("ApiError for Fleet") | ||
| @useRef("../../../../../compute/resource-manager/Microsoft.Compute/common-types/v1/common.json#/definitions/ApiError") | ||
| model ApiError {} | ||
| model ApiError is ApiErrorBase { | ||
SahilArora92 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| @extension("x-ms-identifiers", ["message", "target"]) | ||
| @doc("The Api error details") | ||
|
||
| details?: Array<ApiErrorBase>; | ||
|
|
||
| @doc("The Api inner error") | ||
| innererror?: InnerError; | ||
| } | ||
|
|
||
| @doc("Api error base.") | ||
| model ApiErrorBase { | ||
| @doc("The error code.") | ||
| code?: string; | ||
|
|
||
| @doc("The target of the particular error.") | ||
| target?: string; | ||
|
|
||
| @doc("The error message.") | ||
| message?: string; | ||
| } | ||
|
|
||
| @doc("Inner error details.") | ||
| model InnerError { | ||
| @doc("The exception type.") | ||
| exceptionType?: string; | ||
|
|
||
| @doc("The internal error message or exception dump.") | ||
SahilArora92 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| errorDetail?: string; | ||
SahilArora92 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.