-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AzureStackHCI] Public preview - 2024-12-01-preview (#31977)
* Copy files from preview/2024-09-01-preview Copied the files in a separate commit. This allows reviewers to easily diff subsequent changes against the previous spec. * Update version to preview/2024-12-01-preview Updated the API version from preview/2024-09-01-preview to preview/2024-12-01-preview. * Added tag for 2024-12-01-preview in readme file * correct readme changes * operations * add poolable disk count * cvm changes * custom location for cluster * prettier * update cvm * remove customlocation
- Loading branch information
1 parent
c852a76
commit c326a24
Showing
82 changed files
with
14,949 additions
and
1 deletion.
There are no files selected for viewing
819 changes: 819 additions & 0 deletions
819
...urce-manager/Microsoft.AzureStackHCI/StackHCI/preview/2024-12-01-preview/arcSettings.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,686 changes: 1,686 additions & 0 deletions
1,686
...esource-manager/Microsoft.AzureStackHCI/StackHCI/preview/2024-12-01-preview/clusters.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,004 changes: 1,004 additions & 0 deletions
1,004
...nager/Microsoft.AzureStackHCI/StackHCI/preview/2024-12-01-preview/deploymentSettings.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,150 changes: 1,150 additions & 0 deletions
1,150
...e-manager/Microsoft.AzureStackHCI/StackHCI/preview/2024-12-01-preview/edgeDeviceJobs.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,296 changes: 1,296 additions & 0 deletions
1,296
...urce-manager/Microsoft.AzureStackHCI/StackHCI/preview/2024-12-01-preview/edgeDevices.json
Large diffs are not rendered by default.
Oops, something went wrong.
93 changes: 93 additions & 0 deletions
93
...tackHCI/StackHCI/preview/2024-12-01-preview/examples/Clusters_UpdateSecretsLocations.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,93 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "fd3c3665-1729-4b7b-9a38-238e83b0f98b", | ||
"resourceGroupName": "test-rg", | ||
"clusterName": "myCluster", | ||
"api-version": "2024-12-01-preview", | ||
"body": { | ||
"properties": [ | ||
{ | ||
"secretsType": "BackupSecrets", | ||
"secretsLocation": "https://kvname.vault.azure.net/" | ||
} | ||
] | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/clusters/myCluster", | ||
"name": "myCluster", | ||
"type": "Microsoft.AzureStackHCI/clusters", | ||
"location": "East US", | ||
"tags": {}, | ||
"systemData": { | ||
"createdBy": "user1", | ||
"createdByType": "User", | ||
"createdAt": "2020-01-01T17:18:19.1234567Z", | ||
"lastModifiedBy": "user2", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z" | ||
}, | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"status": "ConnectedRecently", | ||
"cloudId": "a3c0468f-e38e-4dda-ac48-817f620536f0", | ||
"cloudManagementEndpoint": "https://98294836-31be-4668-aeae-698667faf99b.waconazure.com", | ||
"aadClientId": "24a6e53d-04e5-44d2-b7cc-1b732a847dfc", | ||
"aadTenantId": "7e589cc1-a8b6-4dff-91bd-5ec0fa18db94", | ||
"desiredProperties": { | ||
"windowsServerSubscription": "Enabled", | ||
"diagnosticLevel": "Basic" | ||
}, | ||
"softwareAssuranceProperties": { | ||
"softwareAssuranceStatus": "Enabled", | ||
"lastUpdated": "2022-08-18T22:01:12.4191603Z", | ||
"softwareAssuranceIntent": "Enable" | ||
}, | ||
"reportedProperties": { | ||
"clusterName": "cluster1", | ||
"clusterId": "a76ac23a-1819-4e82-9410-e3e4ec3d1425", | ||
"clusterVersion": "10.0.17777", | ||
"nodes": [ | ||
{ | ||
"name": "Node1", | ||
"id": 1, | ||
"windowsServerSubscription": "Enabled", | ||
"nodeType": "ThirdParty", | ||
"manufacturer": "Dell Inc.", | ||
"model": "EMC AX740", | ||
"osName": "Azure Stack HCI", | ||
"osVersion": "10.0.17777.1061", | ||
"serialNumber": "Q45CZC3", | ||
"coreCount": 8, | ||
"memoryInGiB": 128 | ||
} | ||
], | ||
"lastUpdated": "2020-03-11T19:24:42.1946017Z", | ||
"imdsAttestation": "Disabled", | ||
"diagnosticLevel": "Basic" | ||
}, | ||
"trialDaysRemaining": 30, | ||
"billingModel": "Trial", | ||
"registrationTimestamp": "2020-03-11T20:44:32.5625121Z", | ||
"lastSyncTimestamp": "2020-03-11T20:44:32.5625121Z", | ||
"lastBillingTimestamp": "2020-03-12T08:12:55.2312022Z", | ||
"secretsLocations": [ | ||
{ | ||
"secretsType": "BackupSecrets", | ||
"secretsLocation": "https://kvname.vault.azure.net/" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationStatuses" | ||
} | ||
} | ||
}, | ||
"operationId": "Clusters_UpdateSecretsLocations", | ||
"title": "Update secrets locations for a Cluster" | ||
} |
113 changes: 113 additions & 0 deletions
113
...ft.AzureStackHCI/StackHCI/preview/2024-12-01-preview/examples/ConfigureRemoteSupport.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,113 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "fd3c3665-1729-4b7b-9a38-238e83b0f98b", | ||
"resourceGroupName": "test-rg", | ||
"clusterName": "mycluster", | ||
"api-version": "2024-12-01-preview", | ||
"remoteSupportRequest": { | ||
"properties": { | ||
"accessLevel": "Diagnostics", | ||
"expirationTimeStamp": "2020-01-01T17:18:19.1234567Z", | ||
"remoteSupportType": "Enable" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationStatuses" | ||
} | ||
}, | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/clusters/myCluster", | ||
"name": "myCluster", | ||
"type": "Microsoft.AzureStackHCI/clusters", | ||
"location": "East US", | ||
"tags": {}, | ||
"systemData": { | ||
"createdBy": "user1", | ||
"createdByType": "User", | ||
"createdAt": "2020-01-01T17:18:19.1234567Z", | ||
"lastModifiedBy": "user2", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z" | ||
}, | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"status": "ConnectedRecently", | ||
"cloudId": "a3c0468f-e38e-4dda-ac48-817f620536f0", | ||
"cloudManagementEndpoint": "https://98294836-31be-4668-aeae-698667faf99b.waconazure.com", | ||
"aadClientId": "24a6e53d-04e5-44d2-b7cc-1b732a847dfc", | ||
"aadTenantId": "7e589cc1-a8b6-4dff-91bd-5ec0fa18db94", | ||
"desiredProperties": { | ||
"windowsServerSubscription": "Enabled", | ||
"diagnosticLevel": "Basic" | ||
}, | ||
"remoteSupportProperties": { | ||
"accessLevel": "Diagnostics", | ||
"expirationTimeStamp": "2020-01-01T17:18:19.1234567Z", | ||
"remoteSupportType": "Enable", | ||
"remoteSupportNodeSettings": [ | ||
{ | ||
"arcResourceId": "/subscriptions/<subId>/resourcegroups/<rg>/Microsoft.HybridCompute/machines/arcNode0", | ||
"state": "Active", | ||
"createdAt": "2020-01-01T17:18:19.1234567Z", | ||
"updatedAt": "2020-01-01T17:18:19.1234567Z", | ||
"connectionStatus": "Connected", | ||
"connectionErrorMessage": "test", | ||
"transcriptLocation": "test" | ||
}, | ||
{ | ||
"arcResourceId": "/subscriptions/<subId>/resourcegroups/<rg>/Microsoft.HybridCompute/machines/arcNode1", | ||
"state": "Active", | ||
"createdAt": "2020-01-01T17:18:19.1234567Z", | ||
"updatedAt": "2020-01-01T17:18:19.1234567Z", | ||
"connectionStatus": "Connected", | ||
"connectionErrorMessage": "test", | ||
"transcriptLocation": "test" | ||
} | ||
], | ||
"remoteSupportSessionDetails": [ | ||
{ | ||
"sessionStartTime": "2020-01-01T17:18:19.1234567Z", | ||
"sessionEndTime": "2020-01-01T17:18:19.1234567Z", | ||
"nodeName": "arcNode0", | ||
"duration": 120, | ||
"accessLevel": "Diagnostics" | ||
} | ||
] | ||
}, | ||
"reportedProperties": { | ||
"clusterName": "cluster1", | ||
"clusterId": "a76ac23a-1819-4e82-9410-e3e4ec3d1425", | ||
"clusterVersion": "10.0.17777", | ||
"nodes": [ | ||
{ | ||
"name": "Node1", | ||
"id": 1, | ||
"windowsServerSubscription": "Enabled", | ||
"nodeType": "ThirdParty", | ||
"manufacturer": "Dell Inc.", | ||
"model": "EMC AX740", | ||
"osName": "Azure Stack HCI", | ||
"osVersion": "10.0.17777.1061", | ||
"serialNumber": "Q45CZC3", | ||
"coreCount": 8, | ||
"memoryInGiB": 128 | ||
} | ||
], | ||
"lastUpdated": "2020-03-11T19:24:42.1946017Z", | ||
"imdsAttestation": "Disabled", | ||
"diagnosticLevel": "Basic" | ||
}, | ||
"trialDaysRemaining": 30, | ||
"billingModel": "Trial", | ||
"registrationTimestamp": "2020-03-11T20:44:32.5625121Z", | ||
"lastSyncTimestamp": "2020-03-11T20:44:32.5625121Z", | ||
"lastBillingTimestamp": "2020-03-12T08:12:55.2312022Z" | ||
} | ||
} | ||
} | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
...kHCI/StackHCI/preview/2024-12-01-preview/examples/ConsentAndInstallDefaultExtensions.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,52 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "fd3c3665-1729-4b7b-9a38-238e83b0f98b", | ||
"resourceGroupName": "test-rg", | ||
"clusterName": "myCluster", | ||
"arcSettingName": "default", | ||
"api-version": "2024-12-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/clusters/myCluster/arcSettings/default", | ||
"type": "Microsoft.AzureStackHCI/clusters/arcSettings", | ||
"systemData": { | ||
"createdBy": "user1", | ||
"createdByType": "User", | ||
"createdAt": "2021-01-01T17:18:19.1234567Z", | ||
"lastModifiedBy": "user2", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2021-01-02T17:18:19.1234567Z" | ||
}, | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"arcInstanceResourceGroup": "ArcInstance-rg", | ||
"aggregateState": "Creating", | ||
"perNodeDetails": [ | ||
{ | ||
"name": "Node-1", | ||
"arcInstance": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1", | ||
"state": "Creating" | ||
}, | ||
{ | ||
"name": "Node-2", | ||
"arcInstance": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-2", | ||
"state": "Creating" | ||
} | ||
], | ||
"connectivityProperties": { | ||
"enabled": false, | ||
"serviceConfigurations": [] | ||
}, | ||
"defaultExtensions": [ | ||
{ | ||
"category": "Telemetry", | ||
"consentTime": "2023-01-01T17:18:19.1234567Z" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
...crosoft.AzureStackHCI/StackHCI/preview/2024-12-01-preview/examples/CreateArcIdentity.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,26 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "fd3c3665-1729-4b7b-9a38-238e83b0f98b", | ||
"resourceGroupName": "test-rg", | ||
"clusterName": "myCluster", | ||
"arcSettingName": "default", | ||
"api-version": "2024-12-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"properties": { | ||
"arcApplicationClientId": "7b93bf67-60ac-4909-a987-ac438e69f9ba", | ||
"arcApplicationTenantId": "bdb2c88c-9cfd-4e19-927d-51e875f6912b", | ||
"arcApplicationObjectId": "400bd05f-395f-45a6-ba75-72601df80107", | ||
"arcServicePrincipalObjectId": "00cc4014-482e-4de9-9932-83415cc75f45" | ||
} | ||
} | ||
}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationStatuses" | ||
} | ||
} | ||
} | ||
} |
60 changes: 60 additions & 0 deletions
60
...r/Microsoft.AzureStackHCI/StackHCI/preview/2024-12-01-preview/examples/CreateCluster.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,60 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "fd3c3665-1729-4b7b-9a38-238e83b0f98b", | ||
"resourceGroupName": "test-rg", | ||
"clusterName": "myCluster", | ||
"api-version": "2024-12-01-preview", | ||
"cluster": { | ||
"location": "East US", | ||
"properties": { | ||
"cloudManagementEndpoint": "https://98294836-31be-4668-aeae-698667faf99b.waconazure.com", | ||
"aadClientId": "24a6e53d-04e5-44d2-b7cc-1b732a847dfc", | ||
"aadTenantId": "7e589cc1-a8b6-4dff-91bd-5ec0fa18db94" | ||
}, | ||
"identity": { | ||
"type": "SystemAssigned" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/clusters/myCluster", | ||
"name": "myCluster", | ||
"type": "Microsoft.AzureStackHCI/clusters", | ||
"location": "East US", | ||
"identity": { | ||
"principalId": "87a834db-2e45-409e-911b-e16a44562ec3", | ||
"tenantId": "7e589cc1-a8b6-4dff-91bd-5ec0fa18db94", | ||
"type": "SystemAssigned" | ||
}, | ||
"tags": {}, | ||
"systemData": { | ||
"createdBy": "user1", | ||
"createdByType": "User", | ||
"createdAt": "2020-01-01T17:18:19.1234567Z", | ||
"lastModifiedBy": "user2", | ||
"lastModifiedByType": "User", | ||
"lastModifiedAt": "2020-01-02T17:18:19.1234567Z" | ||
}, | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"status": "NotYetRegistered", | ||
"connectivityStatus": "NotYetRegistered", | ||
"cloudId": "a3c0468f-e38e-4dda-ac48-817f620536f0", | ||
"cloudManagementEndpoint": "https://98294836-31be-4668-aeae-698667faf99b.waconazure.com", | ||
"aadClientId": "24a6e53d-04e5-44d2-b7cc-1b732a847dfc", | ||
"aadTenantId": "7e589cc1-a8b6-4dff-91bd-5ec0fa18db94", | ||
"desiredProperties": { | ||
"windowsServerSubscription": "Disabled", | ||
"diagnosticLevel": "Basic" | ||
}, | ||
"reportedProperties": {}, | ||
"trialDaysRemaining": 30, | ||
"billingModel": "Trial", | ||
"serviceEndpoint": "https://azurestackhci.azurefd.net/eastus" | ||
} | ||
} | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...oft.AzureStackHCI/StackHCI/preview/2024-12-01-preview/examples/CreateClusterIdentity.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,25 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "fd3c3665-1729-4b7b-9a38-238e83b0f98b", | ||
"resourceGroupName": "test-rg", | ||
"clusterName": "myCluster", | ||
"api-version": "2024-12-01-preview" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"properties": { | ||
"aadClientId": "7b93bf67-60ac-4909-a987-ac438e69f9ba", | ||
"aadTenantId": "bdb2c88c-9cfd-4e19-927d-51e875f6912b", | ||
"aadServicePrincipalObjectId": "400bd05f-395f-45a6-ba75-72601df80107", | ||
"aadApplicationObjectId": "00cc4014-482e-4de9-9932-83415cc75f45" | ||
} | ||
} | ||
}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationStatuses" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.