-
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.
Fidalgo internal dogfood updates (#5279)
* Fidalgo internal dogfood updates API changes: - added imageReference to MachineDefintion to separate marketplace and custom image configuration - Added healthCheckStatus to NetworkSettings to represent overall health status - Added HealthCheckDetails as a read-only sub-resource of network settings, allowing customer to retrieve more details about failures * Added list for health check status details
- Loading branch information
Showing
11 changed files
with
425 additions
and
18 deletions.
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 |
---|---|---|
|
@@ -584,6 +584,7 @@ hdinsight | |
Headnode | ||
healthbot | ||
healthcareapis | ||
healthchecks | ||
Heatbeat | ||
heatmap | ||
HHMM | ||
|
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
68 changes: 68 additions & 0 deletions
68
...preview/2021-08-01-privatepreview/examples/MachineDefinitions_CreateWithGalleryImage.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,68 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-08-01-privatepreview", | ||
"subscriptionId": "{subscriptionId}", | ||
"resourceGroupName": "rg1", | ||
"machineDefinitionName": "{machineDefinitionName}", | ||
"body": { | ||
"properties": { | ||
"imageReference": { | ||
"publisher": "MicrosoftWindowsDesktop", | ||
"offer": "windows-11-preview", | ||
"sku": "win11-21h2-ent-cpc-m365" | ||
} | ||
}, | ||
"location": "centralus" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/{subscriptionId}/resourceGroups/rg1/providers/Microsoft.Fidalgo/machinedefinitions/{machineDefinitionName}", | ||
"name": "{machineDefinitionName}", | ||
"type": "Microsoft.Fidalgo/machinedefinitions", | ||
"properties": { | ||
"imageReference": { | ||
"publisher": "MicrosoftWindowsDesktop", | ||
"offer": "windows-11-preview", | ||
"sku": "win11-21h2-ent-cpc-m365" | ||
}, | ||
"provisioningState": "Succeeded" | ||
}, | ||
"systemData": { | ||
"createdBy": "user1", | ||
"createdByType": "User", | ||
"createdAt": "2020-11-18T18:00:36.993Z", | ||
"lastModifiedBy": "user1", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2020-11-18T18:30:36.993Z" | ||
}, | ||
"location": "centralus" | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"id": "/subscriptions/{subscriptionId}/resourceGroups/rg1/providers/Microsoft.Fidalgo/machinedefinitions/{machineDefinitionName}", | ||
"name": "{machineDefinitionName}", | ||
"type": "Microsoft.Fidalgo/machinedefinitions", | ||
"properties": { | ||
"imageReference": { | ||
"publisher": "MicrosoftWindowsDesktop", | ||
"offer": "windows-11-preview", | ||
"sku": "win11-21h2-ent-cpc-m365" | ||
}, | ||
"provisioningState": "Created" | ||
}, | ||
"systemData": { | ||
"createdBy": "user1", | ||
"createdByType": "User", | ||
"createdAt": "2020-11-18T18:00:36.993Z", | ||
"lastModifiedBy": "user1", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2020-11-18T18:30:36.993Z" | ||
}, | ||
"location": "centralus" | ||
} | ||
} | ||
} | ||
} |
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
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
37 changes: 37 additions & 0 deletions
37
....Fidalgo/preview/2021-08-01-privatepreview/examples/NetworkSettings_GetHealthDetails.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,37 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-08-01-privatepreview", | ||
"subscriptionId": "{subscriptionId}", | ||
"resourceGroupName": "rg1", | ||
"networkSettingName": "{networkSettingName}" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/{subscriptionId}/resourceGroups/rg1/providers/Microsoft.Fidalgo/networksettings/{networkSettingName}/healthchecks/latest", | ||
"name": "latest", | ||
"type": "Microsoft.Fidalgo/networksettings/healthchecks", | ||
"properties": { | ||
"startDateTime": "2021-07-03T12:43:14Z", | ||
"endDateTime": "2021-07-03T12:43:15Z", | ||
"healthChecks": [ | ||
{ | ||
"displayName": "Azure AD device sync", | ||
"endDateTime": "2021-07-03T12:43:14Z", | ||
"startDateTime": "2021-07-03T12:43:15Z", | ||
"status": "Passed" | ||
} | ||
] | ||
}, | ||
"systemData": { | ||
"createdBy": "System", | ||
"createdByType": "Application", | ||
"createdAt": "2020-11-18T18:00:36.993Z", | ||
"lastModifiedBy": "System", | ||
"lastModifiedByType": "Application", | ||
"lastModifiedAt": "2020-11-18T18:30:36.993Z" | ||
} | ||
} | ||
} | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
...Fidalgo/preview/2021-08-01-privatepreview/examples/NetworkSettings_ListHealthDetails.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,41 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-08-01-privatepreview", | ||
"subscriptionId": "{subscriptionId}", | ||
"resourceGroupName": "rg1", | ||
"networkSettingName": "{networkSettingName}" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/{subscriptionId}/resourceGroups/rg1/providers/Microsoft.Fidalgo/networksettings/{networkSettingName}/healthchecks/latest", | ||
"name": "latest", | ||
"type": "Microsoft.Fidalgo/networksettings/healthchecks", | ||
"properties": { | ||
"startDateTime": "2021-07-03T12:43:14Z", | ||
"endDateTime": "2021-07-03T12:43:15Z", | ||
"healthChecks": [ | ||
{ | ||
"displayName": "Azure AD device sync", | ||
"endDateTime": "2021-07-03T12:43:14Z", | ||
"startDateTime": "2021-07-03T12:43:15Z", | ||
"status": "Passed" | ||
} | ||
] | ||
}, | ||
"systemData": { | ||
"createdBy": "System", | ||
"createdByType": "Application", | ||
"createdAt": "2020-11-18T18:00:36.993Z", | ||
"lastModifiedBy": "System", | ||
"lastModifiedByType": "Application", | ||
"lastModifiedAt": "2020-11-18T18:30:36.993Z" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.