-
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.
Compute CloudService 2024-11-04 version (#31910)
* create new version folder * update version references * update readme * Adding new property isBootstrapCertificate to CSES (#31851) * adding isBootstrapCertificate property * addressing PR comments * running prettier --------- Co-authored-by: avilgoelms <163285360+avilgoelms@users.noreply.github.com>
- Loading branch information
1 parent
07871a5
commit bf420af
Showing
36 changed files
with
4,710 additions
and
1 deletion.
There are no files selected for viewing
2,695 changes: 2,695 additions & 0 deletions
2,695
...ute/resource-manager/Microsoft.Compute/CloudserviceRP/stable/2024-11-04/cloudService.json
Large diffs are not rendered by default.
Oops, something went wrong.
51 changes: 51 additions & 0 deletions
51
...rosoft.Compute/CloudserviceRP/stable/2024-11-04/examples/CloudServiceOSFamilies_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,51 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"location": "westus2", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "3", | ||
"id": "/subscriptions/{subscription-id}/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/3", | ||
"type": "Microsoft.Compute/locations/cloudServiceOsFamilies", | ||
"location": "westus2", | ||
"properties": { | ||
"name": "3", | ||
"label": "Windows Server 2012", | ||
"versions": [ | ||
{ | ||
"version": "WA-GUEST-OS-3.90_202010-02", | ||
"label": "Windows Azure Guest OS 3.90 (Release 202010-02)", | ||
"isDefault": true, | ||
"isActive": true | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "4", | ||
"id": "/subscriptions/{subscription-id}/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/4", | ||
"type": "Microsoft.Compute/locations/cloudServiceOsFamilies", | ||
"location": "westus2", | ||
"properties": { | ||
"name": "4", | ||
"label": "Windows Server 2012 R2", | ||
"versions": [ | ||
{ | ||
"version": "WA-GUEST-OS-4.83_202010-02", | ||
"label": "Windows Azure Guest OS 4.83 (Release 202010-02)", | ||
"isDefault": true, | ||
"isActive": true | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
...Microsoft.Compute/CloudserviceRP/stable/2024-11-04/examples/CloudServiceOSFamily_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,30 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"location": "westus2", | ||
"osFamilyName": "3", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "3", | ||
"id": "/subscriptions/{subscription-id}/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/3", | ||
"type": "Microsoft.Compute/locations/cloudServiceOsFamilies", | ||
"location": "westus2", | ||
"properties": { | ||
"name": "3", | ||
"label": "Windows Server 2012", | ||
"versions": [ | ||
{ | ||
"version": "WA-GUEST-OS-3.90_202010-02", | ||
"label": "Windows Azure Guest OS 3.90 (Release 202010-02)", | ||
"isDefault": true, | ||
"isActive": true | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
...icrosoft.Compute/CloudserviceRP/stable/2024-11-04/examples/CloudServiceOSVersion_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,26 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"location": "westus2", | ||
"osVersionName": "WA-GUEST-OS-3.90_202010-02", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "WA-GUEST-OS-3.90_202010-02", | ||
"id": "/subscriptions/{subscription-id}/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.90_202010-02", | ||
"type": "Microsoft.Compute/locations/cloudServiceOsVersions", | ||
"location": "westus2", | ||
"properties": { | ||
"version": "WA-GUEST-OS-3.90_202010-02", | ||
"label": "Windows Azure Guest OS 3.90 (Release 202010-02)", | ||
"isDefault": true, | ||
"isActive": true, | ||
"family": "3", | ||
"familyLabel": "Windows Server 2012" | ||
} | ||
} | ||
} | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...crosoft.Compute/CloudserviceRP/stable/2024-11-04/examples/CloudServiceOSVersion_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,43 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"location": "westus2", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "WA-GUEST-OS-3.90_202010-02", | ||
"id": "/subscriptions/{subscription-id}/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.90_202010-02", | ||
"type": "Microsoft.Compute/locations/cloudServiceOsVersions", | ||
"location": "westus2", | ||
"properties": { | ||
"version": "WA-GUEST-OS-3.90_202010-02", | ||
"label": "Windows Azure Guest OS 3.90 (Release 202010-02)", | ||
"isDefault": true, | ||
"isActive": true, | ||
"family": "3", | ||
"familyLabel": "Windows Server 2012" | ||
} | ||
}, | ||
{ | ||
"name": "WA-GUEST-OS-4.83_202010-02", | ||
"id": "/subscriptions/{subscription-id}/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.83_202010-02", | ||
"type": "Microsoft.Compute/locations/cloudServiceOsVersions", | ||
"location": "westus2", | ||
"properties": { | ||
"version": "WA-GUEST-OS-4.83_202010-02", | ||
"label": "Windows Azure Guest OS 4.83 (Release 202010-02)", | ||
"isDefault": true, | ||
"isActive": true, | ||
"family": "4", | ||
"familyLabel": "Windows Server 2012 R2" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
...ft.Compute/CloudserviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_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,18 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"roleInstanceName": "{roleInstance-name}", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationstatus" | ||
} | ||
}, | ||
"204": {} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...dserviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_Delete_ByCloudService.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": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"api-version": "2024-11-04", | ||
"parameters": { | ||
"roleInstances": [ | ||
"ContosoFrontend_IN_0", | ||
"ContosoBackend_IN_1" | ||
] | ||
} | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationstatus" | ||
} | ||
} | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
...osoft.Compute/CloudserviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_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,32 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"roleInstanceName": "{roleInstance-name}", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "{roleInstance-name}", | ||
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Compute/cloudServices/{cs-name}/roleInstances/{roleInstance-name}", | ||
"type": "Microsoft.Compute/cloudServices/roleInstances", | ||
"location": "eastus2euap", | ||
"sku": { | ||
"name": "Standard_D1_v2", | ||
"tier": "Standard" | ||
}, | ||
"properties": { | ||
"networkProfile": { | ||
"networkInterfaces": [ | ||
{ | ||
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Compute/cloudServices/{cs-name}/roleInstances/{roleInstance-name}/networkInterfaces/nic1" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
.../CloudserviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_Get_InstanceView.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": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"roleInstanceName": "{roleInstance-name}", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"platformUpdateDomain": 0, | ||
"platformFaultDomain": 0, | ||
"privateId": "3491bc0c-1f6c-444f-b1d0-ec0751a74e3e", | ||
"statuses": [ | ||
{ | ||
"code": "RoleState/RoleStateStarted", | ||
"level": "Info", | ||
"displayStatus": "RoleStateStarted", | ||
"message": "" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...dserviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_Get_RemoteDesktopFile.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,14 @@ | ||
{ | ||
"parameters": { | ||
"roleInstanceName": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", | ||
"resourceGroupName": "rgcloudService", | ||
"cloudServiceName": "aaaa", | ||
"subscriptionId": "{subscription-id}", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": {} | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...t.Compute/CloudserviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_Rebuild.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,17 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"roleInstanceName": "{roleInstance-name}", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationstatus" | ||
} | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...serviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_Rebuild_ByCloudService.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": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"api-version": "2024-11-04", | ||
"parameters": { | ||
"roleInstances": [ | ||
"ContosoFrontend_IN_0", | ||
"ContosoBackend_IN_1" | ||
] | ||
} | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationstatus" | ||
} | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...t.Compute/CloudserviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_Reimage.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,17 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"roleInstanceName": "{roleInstance-name}", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationstatus" | ||
} | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...serviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_Reimage_ByCloudService.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": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"api-version": "2024-11-04", | ||
"parameters": { | ||
"roleInstances": [ | ||
"ContosoFrontend_IN_0", | ||
"ContosoBackend_IN_1" | ||
] | ||
} | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationstatus" | ||
} | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...t.Compute/CloudserviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_Restart.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,17 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"roleInstanceName": "{roleInstance-name}", | ||
"api-version": "2024-11-04" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationstatus" | ||
} | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...serviceRP/stable/2024-11-04/examples/CloudServiceRoleInstance_Restart_ByCloudService.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": "{subscription-id}", | ||
"resourceGroupName": "ConstosoRG", | ||
"cloudServiceName": "{cs-name}", | ||
"api-version": "2024-11-04", | ||
"parameters": { | ||
"roleInstances": [ | ||
"ContosoFrontend_IN_0", | ||
"ContosoBackend_IN_1" | ||
] | ||
} | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://foo.com/operationstatus" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.