Skip to content
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

yaotong hybridcompute microsoft.hybrid compute 2024 07 10 stable #29954

Merged
merged 30 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c4a59d3
Copy files from preview/2024-05-20-preview
yaotongms Jul 10, 2024
7b45b52
Update version to stable/2024-07-10
yaotongms Jul 10, 2024
83132cc
Added tag for 2024-07-10 in readme file
yaotongms Jul 10, 2024
245f1ae
remove run command
yaotongms Jul 10, 2024
bbd8cab
remov run command
yaotongms Jul 10, 2024
cc21fc0
remove gateway/settings
yaotongms Jul 10, 2024
ba9966b
remove AgentVersions and HybridIdentityMetadata
yaotongms Jul 15, 2024
1fc88a6
Merge branch 'Azure:main' into yaotong/stable
yaotongms Jul 15, 2024
916cc9d
restore license profiles
yaotongms Jul 15, 2024
00cb34e
Merge branch 'yaotong/stable' of https://github.com/yaotongms/azure-r…
yaotongms Jul 15, 2024
0dedc93
remove network config
yaotongms Jul 15, 2024
c0f3337
update readme
yaotongms Jul 15, 2024
457f88b
remove network config
yaotongms Jul 15, 2024
78f1155
fix swagger style
yaotongms Jul 16, 2024
8bcb180
bypass spelling check
yaotongms Jul 16, 2024
660bd95
add 200 response to nsp reconcile
yaotongms Jul 19, 2024
0c7ae34
add 200 to NSP PATCH
yaotongms Jul 22, 2024
5446bbd
remove useless definition
yaotongms Jul 23, 2024
8f434f6
fix style issue
yaotongms Jul 23, 2024
effe07e
fix style
yaotongms Jul 25, 2024
9a3a785
fix styling
yaotongms Jul 25, 2024
c047ad7
fix schema
yaotongms Jul 25, 2024
6744d3f
fix schema
yaotongms Jul 25, 2024
b42b36a
fix styling
yaotongms Jul 25, 2024
b62cda5
fix comments
yaotongms Jul 29, 2024
4b87b2f
fix comments
yaotongms Jul 29, 2024
af554bd
fix style issue
yaotongms Jul 29, 2024
4d28e23
fix style issue
yaotongms Jul 29, 2024
d34a321
add sdk-suppressions.yaml
Alancere Aug 12, 2024
f6fda53
Update sdk-suppressions.yaml
msyyc Aug 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@
]
},
{
"filename": "**/specification/hybridcompute/resource-manager/Microsoft.HybridCompute/preview/**/*.json",
"filename": "**/specification/hybridcompute/resource-manager/Microsoft.HybridCompute/**/*.json",
"words": [
"hotpatch"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
"perimeterName": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee.myAssociation"
},
"responses": {
"200": {
"body": {
"location": "{callbackUrl}"
}
},
"202": {
"headers": {
"Location": "{callbackUrl}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -951,6 +951,12 @@
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/NetworkSecurityPerimeterConfigurationReconcileResult"
}
},
"202": {
"description": "Accepted.",
"headers": {
Expand Down Expand Up @@ -1416,6 +1422,16 @@
}
}
},
"NetworkSecurityPerimeterConfigurationReconcileResult": {
"type": "object",
"description": "Result of network security perimeter configurations.",
"properties": {
"location": {
yaotongms marked this conversation as resolved.
Show resolved Hide resolved
"description": "The URL of the resource used to check the status of the asynchronous operation.",
"type": "string"
}
}
},
"ResourceAssociation": {
"type": "object",
"description": "Properties that define a Resource Association.",
Expand Down
Loading