-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
azure-http-specs, add ARM Location-Based case
- Loading branch information
Showing
4 changed files
with
460 additions
and
0 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
175 changes: 175 additions & 0 deletions
175
packages/azure-http-specs/specs/azure/resource-manager/resources/location.tsp
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,175 @@ | ||
import "@typespec/http"; | ||
import "@typespec/rest"; | ||
import "@azure-tools/typespec-azure-core"; | ||
import "@azure-tools/typespec-azure-resource-manager"; | ||
import "@typespec/spector"; | ||
|
||
using TypeSpec.Http; | ||
using TypeSpec.Rest; | ||
using Azure.Core; | ||
using Azure.ResourceManager; | ||
using TypeSpec.OpenAPI; | ||
using Spector; | ||
|
||
namespace Azure.ResourceManager.Resources; | ||
|
||
@resource("locationResources") | ||
@parentResource(ResourceGroupLocationResource) | ||
model LocationResource is ProxyResource<LocationResourceProperties> { | ||
...ResourceNameParameter<LocationResource>; | ||
} | ||
|
||
/** Location resource properties */ | ||
model LocationResourceProperties { | ||
@doc("The description of the resource.") | ||
description?: string; | ||
|
||
/** The status of the last operation. */ | ||
@visibility("read") | ||
provisioningState?: ProvisioningState; | ||
} | ||
|
||
@armResourceOperations | ||
interface LocationResources { | ||
@scenario | ||
@scenarioDoc(""" | ||
Resource GET operation. | ||
Expected path: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Azure.ResourceManager.Resources/locations/eastus/locationResources/resource | ||
Expected query parameter: api-version=2023-12-01-preview | ||
Expected response body: | ||
```json | ||
{ | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Azure.ResourceManager.Resources/locations/eastus/locationResources/resource", | ||
"name": "resource", | ||
"type": "Azure.ResourceManager.Resources/locationResources", | ||
"properties":{ | ||
"description": "valid", | ||
"provisioningState": "Succeeded" | ||
}, | ||
"systemData": { | ||
"createdBy": "AzureSDK", | ||
"createdByType": "User", | ||
"createdAt": <any date>, | ||
"lastModifiedBy": "AzureSDK", | ||
"lastModifiedAt": <any date>, | ||
"lastModifiedByType": "User", | ||
} | ||
} | ||
``` | ||
""") | ||
get is ArmResourceRead<LocationResource>; | ||
|
||
@scenario | ||
@scenarioDoc(""" | ||
Resource PUT operation. | ||
Expected path: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Azure.ResourceManager.Resources/locations/eastus/locationResources/resource | ||
Expected query parameter: api-version=2022-12-01-preview | ||
Expected request body: | ||
```json | ||
{ | ||
"properties": { | ||
"description": "valid", | ||
} | ||
} | ||
``` | ||
Expected response body: | ||
```json | ||
{ | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Azure.ResourceManager.Resources/locations/eastus/locationResources/resource", | ||
"name": "resource", | ||
"type": "Azure.ResourceManager.Resources/locationResources", | ||
"properties": { | ||
"description": "valid", | ||
"provisioningState": "Succeeded", | ||
}, | ||
"systemData": { | ||
"createdBy": "AzureSDK", | ||
"createdByType": "User", | ||
"createdAt": <any date>, | ||
"lastModifiedBy": "AzureSDK", | ||
"lastModifiedAt": <any date>, | ||
"lastModifiedByType": "User", | ||
} | ||
} | ||
``` | ||
""") | ||
createOrUpdate is ArmResourceCreateOrUpdateAsync<LocationResource>; | ||
|
||
@scenario | ||
@scenarioDoc(""" | ||
Resource PATCH operation. | ||
Expected path: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Azure.ResourceManager.Resources/locations/eastus/locationResources/resource | ||
Expected query parameter: api-version=2023-12-01-preview | ||
Expected request body: | ||
```json | ||
{ | ||
"properties": { | ||
"description": "valid2", | ||
} | ||
} | ||
``` | ||
Expected response body: | ||
```json | ||
{ | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Azure.ResourceManager.Resources/locations/eastus/locationResources/resource", | ||
"name": "resource", | ||
"type": "Azure.ResourceManager.Resources/locationResources", | ||
"properties":{ | ||
"description": "valid2", | ||
"provisioningState": "Succeeded" | ||
}, | ||
"systemData": { | ||
"createdBy": "AzureSDK", | ||
"createdByType": "User", | ||
"createdAt": <any date>, | ||
"lastModifiedBy": "AzureSDK", | ||
"lastModifiedAt": <any date>, | ||
"lastModifiedByType": "User", | ||
} | ||
} | ||
``` | ||
""") | ||
update is ArmResourcePatchSync<LocationResource, LocationResourceProperties>; | ||
|
||
@scenario | ||
@scenarioDoc(""" | ||
Resource DELETE operation. | ||
Expected path: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Azure.ResourceManager.Resources/locations/eastus/locationResources/resource | ||
Expected query parameter: api-version=2023-12-01-preview | ||
``` | ||
Expected response status code: 204 | ||
""") | ||
delete is ArmResourceDeleteSync<LocationResource>; | ||
|
||
@scenario | ||
@scenarioDoc(""" | ||
Resource LIST by resource group operation. | ||
Expected path: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Azure.ResourceManager.Resources/locations/eastus/locationResources | ||
Expected query parameter: api-version=2023-12-01-preview | ||
Expected response body: | ||
```json | ||
{ | ||
"value": [{ | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-rg/providers/Azure.ResourceManager.Resources/locations/eastus/locationResources/resource", | ||
"name": "resource", | ||
"type": "Azure.ResourceManager.Resources/locationResources", | ||
"properties":{ | ||
"description": "valid", | ||
"provisioningState": "Succeeded" | ||
}, | ||
"systemData": { | ||
"createdBy": "AzureSDK", | ||
"createdByType": "User", | ||
"createdAt": <any date>, | ||
"lastModifiedBy": "AzureSDK", | ||
"lastModifiedAt": <any date>, | ||
"lastModifiedByType": "User", | ||
} | ||
}] | ||
} | ||
``` | ||
""") | ||
listByParent is ArmResourceListByParent<LocationResource>; | ||
} |
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
Oops, something went wrong.