forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tsp
More file actions
40 lines (35 loc) · 1.38 KB
/
Copy pathmain.tsp
File metadata and controls
40 lines (35 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* PLEASE DO NOT REMOVE - USED FOR CONVERTER METRICS
* Generated by package: @autorest/openapi-to-typespec
* Parameters used:
* isFullCompatible: false
* guessResourceKey: false
* Version: 0.11.1
* Date: 2025-06-06T20:26:04.184Z
*/
import "@typespec/rest";
import "@typespec/versioning";
import "@azure-tools/typespec-azure-core";
import "@azure-tools/typespec-azure-resource-manager";
import "./models.tsp";
import "./models-whatIf.tsp";
import "./back-compat.tsp";
import "./client.tsp";
using Azure.ResourceManager;
using TypeSpec.Versioning;
/** The APIs listed in this specification can be used to manage Deployment stack resources through the Azure Resource Manager. */
#suppress "@azure-tools/typespec-azure-resource-manager/missing-operations-endpoint" "Operations API defined separately - namespace is shared between multiple services."
@armProviderNamespace("Microsoft.Resources")
@service(#{ title: "DeploymentStacksClient" })
@versioned(Microsoft.Resources.DeploymentStacks.Versions)
@armCommonTypesVersion(Azure.ResourceManager.CommonTypes.Versions.v6)
namespace Microsoft.Resources.DeploymentStacks;
/** The available API versions. */
enum Versions {
/** The 2022-08-01-preview API version. */
v2022_08_01_preview: "2022-08-01-preview",
/** The 2024-03-01 API version. */
v2024_03_01: "2024-03-01",
/** The 2025-07-01 API version. */
v2025_07_01: "2025-07-01",
}