-
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.VirtualMachineImages to …
…add version stable/2022-02-14 (#18896) * Adds base for updating Microsoft.VirtualMachineImages from version stable/2021-10-01 to version 2022-02-14 * Updates readme * Updates API version in new specs and examples * adding 2022 changes * fixed proxy resource path * added object to ImageTemplate* * added object to valide and prettier to examples * added identifier * removed format integer 32 for breaking change * added back format integer 64, to be in compliance for lintdiff and breaking change * adding back int32 after getting jeffrey richters approval
- Loading branch information
1 parent
e81add1
commit 9f3ac7b
Showing
15 changed files
with
2,727 additions
and
7 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...e-manager/Microsoft.VirtualMachineImages/stable/2022-02-14/examples/CancelImageBuild.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": "myResourceGroup", | ||
"imageTemplateName": "myImageTemplate", | ||
"api-version": "2022-02-14" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {}, | ||
"202": { | ||
"headers": { | ||
"Azure-AsyncOperation": "https://management.azure.com/subscriptions/{subscription-id}/providers/Microsoft.VirtualMachineImages/locations/{location}/operations/{operation-id}?api-version=2022-02-14" | ||
} | ||
} | ||
} | ||
} |
147 changes: 147 additions & 0 deletions
147
...r/Microsoft.VirtualMachineImages/stable/2022-02-14/examples/CreateImageTemplateLinux.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,147 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "{subscription-id}", | ||
"resourceGroupName": "myResourceGroup", | ||
"api-version": "2022-02-14", | ||
"imageTemplateName": "myImageTemplate", | ||
"parameters": { | ||
"location": "westus", | ||
"tags": { | ||
"imagetemplate_tag1": "IT_T1", | ||
"imagetemplate_tag2": "IT_T2" | ||
}, | ||
"identity": { | ||
"type": "UserAssigned", | ||
"userAssignedIdentities": { | ||
"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity_1": {} | ||
} | ||
}, | ||
"properties": { | ||
"source": { | ||
"type": "ManagedImage", | ||
"imageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/images/source_image" | ||
}, | ||
"customize": [ | ||
{ | ||
"type": "Shell", | ||
"name": "Shell Customizer Example", | ||
"scriptUri": "https://example.com/path/to/script.sh" | ||
} | ||
], | ||
"distribute": [ | ||
{ | ||
"type": "ManagedImage", | ||
"location": "1_location", | ||
"runOutputName": "image_it_pir_1", | ||
"imageId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/images/image_it_1", | ||
"artifactTags": { | ||
"tagName": "value" | ||
} | ||
} | ||
], | ||
"vmProfile": { | ||
"vmSize": "Standard_D2s_v3", | ||
"osDiskSizeGB": 64, | ||
"vnetConfig": { | ||
"subnetId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet_name/subnets/subnet_name" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"201": { | ||
"body": { | ||
"id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate", | ||
"name": "myImageTemplate", | ||
"location": "westus", | ||
"type": "Microsoft.VirtualMachineImages/imageTemplate", | ||
"identity": { | ||
"type": "UserAssigned", | ||
"userAssignedIdentities": { | ||
"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity_1": { | ||
"clientId": "00000000-0000-0000-0000-000000000000", | ||
"principalId": "00000000-0000-0000-0000-000000000000" | ||
} | ||
} | ||
}, | ||
"properties": { | ||
"source": { | ||
"type": "ManagedImage", | ||
"imageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/images/source_image" | ||
}, | ||
"customize": [ | ||
{ | ||
"type": "Shell", | ||
"name": "Shell Customizer Example", | ||
"scriptUri": "https://example.com/path/to/script.sh" | ||
} | ||
], | ||
"distribute": [ | ||
{ | ||
"type": "ManagedImage", | ||
"location": "1_location", | ||
"runOutputName": "image_it_pir_1", | ||
"imageId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/images/image_it_1", | ||
"artifactTags": { | ||
"tagName": "value" | ||
} | ||
} | ||
], | ||
"vmProfile": { | ||
"vmSize": "Standard_D2s_v3", | ||
"osDiskSizeGB": 64, | ||
"vnetConfig": { | ||
"subnetId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet_name/subnets/subnet_name" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/{subscription-id}/resourceGroups/myResourceGroup/providers/Microsoft.VirtualMachineImages/imageTemplates/myImageTemplate", | ||
"name": "myImageTemplate", | ||
"location": "westus", | ||
"type": "Microsoft.VirtualMachineImages/imageTemplate", | ||
"identity": { | ||
"type": "UserAssigned", | ||
"userAssignedIdentities": { | ||
"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity_1": { | ||
"clientId": "00000000-0000-0000-0000-000000000000", | ||
"principalId": "00000000-0000-0000-0000-000000000000" | ||
} | ||
} | ||
}, | ||
"properties": { | ||
"source": { | ||
"type": "ManagedImage", | ||
"imageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/images/source_image" | ||
}, | ||
"customize": [ | ||
{ | ||
"type": "Shell", | ||
"name": "Shell Customizer Example", | ||
"scriptUri": "https://example.com/path/to/script.sh" | ||
} | ||
], | ||
"distribute": [ | ||
{ | ||
"type": "ManagedImage", | ||
"location": "1_location", | ||
"runOutputName": "image_it_pir_1", | ||
"imageId": "/subscriptions/{subscription-id}/resourceGroups/rg1/providers/Microsoft.Compute/images/image_it_1", | ||
"artifactTags": { | ||
"tagName": "value" | ||
} | ||
} | ||
], | ||
"vmProfile": { | ||
"vmSize": "Standard_D2s_v3", | ||
"osDiskSizeGB": 64 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.