-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Hub Generated] Review request for Microsoft.HybridCompute to add ver…
…sion stable/2022-11-10 (#21528) * Adds base for updating Microsoft.HybridCompute from version preview/2022-08-11-preview to version 2022-11-10 * Updates readme * Updates API version in new specs and examples * added headers for 202 * add extensions back * updated description * changed every v2 to v3 type
- Loading branch information
Showing
33 changed files
with
4,438 additions
and
2 deletions.
There are no files selected for viewing
1,675 changes: 1,675 additions & 0 deletions
1,675
...bridcompute/resource-manager/Microsoft.HybridCompute/stable/2022-11-10/HybridCompute.json
Large diffs are not rendered by default.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
.../resource-manager/Microsoft.HybridCompute/stable/2022-11-10/examples/DELETEExtension.json
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,20 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscriptionId}", | ||
"resourceGroupName": "myResourceGroup", | ||
"machineName": "myMachine", | ||
"extensionName": "MMA", | ||
"api-version": "2022-11-10" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"Location": "{callbackUrl}", | ||
"Retry-After": 200, | ||
"Azure-AsyncOperation": "{callbackUri}" | ||
} | ||
}, | ||
"204": {} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...rce-manager/Microsoft.HybridCompute/stable/2022-11-10/examples/ExtensionMetadata_Get.json
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,22 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", | ||
"location": "EastUS", | ||
"publisher": "microsoft.azure.monitor", | ||
"extensionType": "azuremonitorlinuxagent", | ||
"version": "1.9.1", | ||
"api-version": "2022-11-10" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/Providers/Microsoft.HybridCompute/locations/eastus/publishers/microsoft.azure.monitor/extensionTypes/azuremonitorlinuxagent/versions/1.9.1", | ||
"properties": { | ||
"version": "1.9.1", | ||
"extensionType": "azuremonitorlinuxagent", | ||
"publisher": "microsoft.azure.monitor" | ||
} | ||
} | ||
} | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
...ce-manager/Microsoft.HybridCompute/stable/2022-11-10/examples/ExtensionMetadata_List.json
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,33 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", | ||
"location": "EastUS", | ||
"publisher": "microsoft.azure.monitor", | ||
"extensionType": "azuremonitorlinuxagent", | ||
"api-version": "2022-11-10" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"properties": { | ||
"version": "1.9.1", | ||
"extensionType": "azuremonitorlinuxagent", | ||
"publisher": "microsoft.azure.monitor" | ||
}, | ||
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/Providers/Microsoft.HybridCompute/locations/eastus/publishers/microsoft.azure.monitor/extensionTypes/azuremonitorlinuxagent/versions/1.9.1" | ||
}, | ||
{ | ||
"properties": { | ||
"version": "1.9.2", | ||
"extensionType": "azuremonitorlinuxagent", | ||
"publisher": "microsoft.azure.monitor" | ||
}, | ||
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/Providers/Microsoft.HybridCompute/locations/eastus/publishers/microsoft.azure.monitor/extensionTypes/azuremonitorlinuxagent/versions/1.9.2" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
...source-manager/Microsoft.HybridCompute/stable/2022-11-10/examples/Extensions_Upgrade.json
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,28 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscriptionId}", | ||
"resourceGroupName": "myResourceGroup", | ||
"machineName": "myMachine", | ||
"api-version": "2022-11-10", | ||
"extensionUpgradeParameters": { | ||
"extensionTargets": { | ||
"Microsoft.Compute.CustomScriptExtension": { | ||
"targetVersion": "1.10" | ||
}, | ||
"Microsoft.Azure.Monitoring": { | ||
"targetVersion": "2.0" | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"Location": "{callbackUrl}", | ||
"Retry-After": 200, | ||
"Azure-AsyncOperation": "{callbackUri}" | ||
} | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...ute/resource-manager/Microsoft.HybridCompute/stable/2022-11-10/examples/GETExtension.json
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,42 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscriptionId}", | ||
"resourceGroupName": "myResourceGroup", | ||
"machineName": "myMachine", | ||
"extensionName": "CustomScriptExtension", | ||
"api-version": "2022-11-10" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/Machines/myMachine/Extensions/CustomScriptExtension", | ||
"name": "CustomScriptExtension", | ||
"type": "Microsoft.HybridCompute/machines/extensions", | ||
"location": "eastus2euap", | ||
"properties": { | ||
"publisher": "Microsoft.Compute", | ||
"type": "string", | ||
"typeHandlerVersion": "1.10.3", | ||
"autoUpgradeMinorVersion": false, | ||
"settings": { | ||
"commandToExecute": "powershell.exe -c \"Get-Process | Where-Object { $_.CPU -gt 10000 }\"" | ||
}, | ||
"protectedSettings": {}, | ||
"provisioningState": "Succeeded", | ||
"instanceView": { | ||
"name": "CustomScriptExtension", | ||
"type": "CustomScriptExtension", | ||
"typeHandlerVersion": "1.10.3", | ||
"status": { | ||
"code": "success", | ||
"level": "Information", | ||
"displayStatus": "Provisioning succeeded", | ||
"message": "Finished executing command, StdOut: , StdErr:", | ||
"time": "2019-08-08T20:42:10.999Z" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
...te/resource-manager/Microsoft.HybridCompute/stable/2022-11-10/examples/LISTExtension.json
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,64 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscriptionId}", | ||
"resourceGroupName": "myResourceGroup", | ||
"machineName": "myMachine", | ||
"api-version": "2022-11-10" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/Machines/myMachine/Extensions/CustomScriptExtension", | ||
"name": "CustomScriptExtension", | ||
"location": "eastus2euap", | ||
"type": "Microsoft.HybridCompute/machines/extensions", | ||
"properties": { | ||
"publisher": "Microsoft.Compute", | ||
"type": "CustomScriptExtension", | ||
"typeHandlerVersion": "1.10.3", | ||
"autoUpgradeMinorVersion": false, | ||
"settings": { | ||
"commandToExecute": "powershell.exe -c \"Get-Process | Where-Object { $_.CPU -gt 10000 }\"" | ||
}, | ||
"provisioningState": "Succeeded", | ||
"instanceView": { | ||
"name": "CustomScriptExtension", | ||
"type": "CustomScriptExtension", | ||
"typeHandlerVersion": "1.10.3", | ||
"status": { | ||
"code": "success", | ||
"level": "Information", | ||
"displayStatus": "Provisioning succeeded", | ||
"message": "formattedMessage: Finished executing command, StdOut: , StdErr: ", | ||
"time": "2020-08-13T17:18:57.405Z" | ||
} | ||
} | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/Machines/myMachine/Extensions/winosupdateextension", | ||
"name": "winosupdateextension", | ||
"location": "eastus2euap", | ||
"type": "Microsoft.HybridCompute/machines/extensions", | ||
"properties": { | ||
"publisher": "microsoft.softwareupdatemanagement.test", | ||
"type": "windowsosupdateextension", | ||
"typeHandlerVersion": "1.0.0.0", | ||
"autoUpgradeMinorVersion": false, | ||
"settings": {}, | ||
"provisioningState": "Creating", | ||
"instanceView": { | ||
"name": "winosupdateextension", | ||
"type": "windowsosupdateextension", | ||
"typeHandlerVersion": "1.0.0.0", | ||
"status": {} | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
86 changes: 86 additions & 0 deletions
86
...e-manager/Microsoft.HybridCompute/stable/2022-11-10/examples/Machines_CreateOrUpdate.json
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,86 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscriptionId}", | ||
"resourceGroupName": "myResourceGroup", | ||
"machineName": "myMachine", | ||
"api-version": "2022-11-10", | ||
"parameters": { | ||
"location": "eastus2euap", | ||
"properties": { | ||
"vmId": "b7a098cc-b0b8-46e8-a205-62f301a62a8f", | ||
"locationData": { | ||
"name": "Redmond" | ||
}, | ||
"clientPublicKey": "string", | ||
"parentClusterResourceId": "{AzureStackHCIResourceId}", | ||
"privateLinkScopeResourceId": "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/privateLinkScopes/privateLinkScopeName" | ||
}, | ||
"identity": { | ||
"type": "SystemAssigned" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/machines/myMachine", | ||
"name": "myMachine", | ||
"location": "eastus2euap", | ||
"tags": null, | ||
"identity": { | ||
"type": "SystemAssigned", | ||
"principalId": "string", | ||
"tenantId": "string" | ||
}, | ||
"type": "Microsoft.HybridCompute/machines", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"agentVersion": null, | ||
"status": null, | ||
"lastStatusChange": null, | ||
"errorDetails": null, | ||
"displayName": null, | ||
"machineFqdn": null, | ||
"vmUuid": null, | ||
"osSku": null, | ||
"domainName": null, | ||
"adFqdn": null, | ||
"dnsFqdn": null, | ||
"osVersion": null, | ||
"osType": null, | ||
"osProfile": { | ||
"computerName": null, | ||
"windowsConfiguration": { | ||
"patchSettings": { | ||
"assessmentMode": null, | ||
"patchMode": null | ||
} | ||
}, | ||
"linuxConfiguration": { | ||
"patchSettings": { | ||
"assessmentMode": null, | ||
"patchMode": null | ||
} | ||
} | ||
}, | ||
"vmId": "b7a098cc-b0b8-46e8-a205-62f301a62a8f", | ||
"locationData": { | ||
"name": "Redmond", | ||
"city": "redmond", | ||
"district": null, | ||
"countryOrRegion": "usa" | ||
}, | ||
"clientPublicKey": "string", | ||
"parentClusterResourceId": "{AzureStackHCIResourceId}", | ||
"mssqlDiscovered": "false", | ||
"detectedProperties": { | ||
"cloudprovider": "N/A", | ||
"manufacturer": "Microsoft Corporation", | ||
"model": "Virtual Machine" | ||
}, | ||
"privateLinkScopeResourceId": "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/privateLinkScopes/privateLinkScopeName" | ||
} | ||
} | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
.../resource-manager/Microsoft.HybridCompute/stable/2022-11-10/examples/Machines_Delete.json
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,12 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscriptionId}", | ||
"resourceGroupName": "myResourceGroup", | ||
"machineName": "myMachine", | ||
"api-version": "2022-11-10" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {} | ||
} | ||
} |
Oops, something went wrong.