@azure-tools/typespec-azure-resource-manager 0.70.0-dev.2 → 0.70.0-dev.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -10
- package/dist/generated-defs/Azure.ResourceManager.d.ts +34 -24
- package/dist/generated-defs/Azure.ResourceManager.d.ts.map +1 -1
- package/lib/common-types/common-types.tsp +1 -1
- package/lib/common-types/customer-managed-keys-ref.tsp +43 -0
- package/lib/common-types/nsp-operations.tsp +5 -5
- package/lib/common-types/types.tsp +2 -3
- package/lib/decorators.tsp +40 -11
- package/lib/extension/operations.tsp +8 -6
- package/lib/foundations/arm.foundations.tsp +22 -11
- package/lib/interfaces.tsp +24 -14
- package/lib/legacy-types/extension.tsp +1 -1
- package/lib/legacy-types/operations.tsp +9 -5
- package/lib/legacy-types/private-endpoints.tsp +4 -4
- package/lib/models.tsp +1 -1
- package/lib/operations.tsp +31 -19
- package/lib/private-endpoints.tsp +9 -9
- package/lib/private-links.tsp +3 -3
- package/lib/responses.tsp +17 -12
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -117,7 +117,9 @@ the version of the Azure Resource Manager common-types to use for refs in emitte
|
|
|
117
117
|
|
|
118
118
|
#### `@armLibraryNamespace`
|
|
119
119
|
|
|
120
|
-
`@armLibraryNamespace` designates a namespace as
|
|
120
|
+
`@armLibraryNamespace` designates a namespace as containing Azure Resource Manager Provider information.
|
|
121
|
+
This is used for library namespaces that define reusable ARM resource types that can be shared
|
|
122
|
+
across multiple provider specifications.
|
|
121
123
|
|
|
122
124
|
```typespec
|
|
123
125
|
@Azure.ResourceManager.armLibraryNamespace
|
|
@@ -171,8 +173,9 @@ namespace Microsoft.ContosoService;
|
|
|
171
173
|
|
|
172
174
|
#### `@armProviderNameValue`
|
|
173
175
|
|
|
174
|
-
`@
|
|
175
|
-
|
|
176
|
+
`@armProviderNameValue` sets the provider namespace value on operations.
|
|
177
|
+
It is used internally to inject the correct provider namespace path segment
|
|
178
|
+
for resource operations in auto-generated routes.
|
|
176
179
|
|
|
177
180
|
```typespec
|
|
178
181
|
@Azure.ResourceManager.armProviderNameValue
|
|
@@ -188,6 +191,11 @@ None
|
|
|
188
191
|
|
|
189
192
|
#### `@armResourceAction`
|
|
190
193
|
|
|
194
|
+
Marks the operation as a custom action on a specific Azure Resource Manager resource type.
|
|
195
|
+
This decorator associates a POST action operation with its resource,
|
|
196
|
+
identifying the semantics of the operation as a resource action over a specific resource for documentation,
|
|
197
|
+
resource validation, and use by downstream emitters.
|
|
198
|
+
|
|
191
199
|
```typespec
|
|
192
200
|
@Azure.ResourceManager.armResourceAction(resourceModel: Model, resourceName?: valueof string)
|
|
193
201
|
```
|
|
@@ -224,7 +232,9 @@ Marks the operation as being a check existence (HEAD) operation
|
|
|
224
232
|
|
|
225
233
|
#### `@armResourceCollectionAction`
|
|
226
234
|
|
|
227
|
-
Marks the operation as being a collection action
|
|
235
|
+
Marks the operation as being a collection action that is not associated with a specific resource instance.
|
|
236
|
+
Collection actions are operations that act on a resource collection rather than a single resource,
|
|
237
|
+
such as `checkNameAvailability` or provider-level actions.
|
|
228
238
|
|
|
229
239
|
```typespec
|
|
230
240
|
@Azure.ResourceManager.armResourceCollectionAction
|
|
@@ -240,6 +250,10 @@ None
|
|
|
240
250
|
|
|
241
251
|
#### `@armResourceCreateOrUpdate`
|
|
242
252
|
|
|
253
|
+
Marks the operation as a create or update (PUT) operation for a specific Azure Resource Manager resource type.
|
|
254
|
+
This decorator identifies the semantics of the operation as a CreateOrReplace lifecycle operation over a particular resource,
|
|
255
|
+
for use in documentation, resource validation, and downstream emitters.
|
|
256
|
+
|
|
243
257
|
```typespec
|
|
244
258
|
@Azure.ResourceManager.armResourceCreateOrUpdate(resourceModel: Model, resourceName?: valueof string)
|
|
245
259
|
```
|
|
@@ -257,6 +271,10 @@ None
|
|
|
257
271
|
|
|
258
272
|
#### `@armResourceDelete`
|
|
259
273
|
|
|
274
|
+
Marks the operation as a delete (DELETE) operation for a specific Azure Resource Manager resource type.
|
|
275
|
+
This decorator identifies the operation as a Delete lifecycle operation over the resource for us in documentation,
|
|
276
|
+
resource validation, and downstream emitters.
|
|
277
|
+
|
|
260
278
|
```typespec
|
|
261
279
|
@Azure.ResourceManager.armResourceDelete(resourceModel: Model, resourceName?: valueof string)
|
|
262
280
|
```
|
|
@@ -274,6 +292,10 @@ None
|
|
|
274
292
|
|
|
275
293
|
#### `@armResourceList`
|
|
276
294
|
|
|
295
|
+
Marks the operation as a list (GET collection) operation for a specific Azure Resource Manager resource type.
|
|
296
|
+
This decorator identifies the semantics of the operation as a collection list operation over a resource type and a particular scope for documentation,
|
|
297
|
+
resource validation, and downstream emitters.
|
|
298
|
+
|
|
277
299
|
```typespec
|
|
278
300
|
@Azure.ResourceManager.armResourceList(resourceModel: Model, resourceName?: valueof string)
|
|
279
301
|
```
|
|
@@ -325,6 +347,10 @@ individually tagged
|
|
|
325
347
|
|
|
326
348
|
#### `@armResourceRead`
|
|
327
349
|
|
|
350
|
+
Marks the operation as a read (GET) operation for a specific Azure Resource Manager resource type.
|
|
351
|
+
This decorator identifies the semantics of the operation as a Read lifecycle operation over a particular resource,
|
|
352
|
+
for use in documentation, resource validation, and downstream emitters.
|
|
353
|
+
|
|
328
354
|
```typespec
|
|
329
355
|
@Azure.ResourceManager.armResourceRead(resourceModel: Model, resourceName?: valueof string)
|
|
330
356
|
```
|
|
@@ -342,6 +368,10 @@ individually tagged
|
|
|
342
368
|
|
|
343
369
|
#### `@armResourceUpdate`
|
|
344
370
|
|
|
371
|
+
Marks the operation as an update (PATCH) operation for a specific Azure Resource Manager resource type.
|
|
372
|
+
This decorator identifies the operation as an Update lifecycle operation over the resource for use in documentation,
|
|
373
|
+
resource validation, and downstream emitters.
|
|
374
|
+
|
|
345
375
|
```typespec
|
|
346
376
|
@Azure.ResourceManager.armResourceUpdate(resourceModel: Model, resourceName?: valueof string)
|
|
347
377
|
```
|
|
@@ -360,7 +390,8 @@ individually tagged
|
|
|
360
390
|
#### `@armVirtualResource`
|
|
361
391
|
|
|
362
392
|
This decorator is used on Azure Resource Manager resources that are not based on
|
|
363
|
-
Azure.ResourceManager common types.
|
|
393
|
+
Azure.ResourceManager common types. It marks a model as an ARM virtual resource,
|
|
394
|
+
which is useful for defining the scope of resources used only as parents for child resources, or scopes for extension resources.
|
|
364
395
|
|
|
365
396
|
```typespec
|
|
366
397
|
@Azure.ResourceManager.armVirtualResource(provider?: valueof string)
|
|
@@ -450,10 +481,11 @@ None
|
|
|
450
481
|
|
|
451
482
|
#### `@resourceBaseType`
|
|
452
483
|
|
|
453
|
-
This decorator sets the base type of the given resource
|
|
484
|
+
This decorator sets the base type of the given resource, indicating where in the
|
|
485
|
+
Azure Resource Manager hierarchy the resource is located.
|
|
454
486
|
|
|
455
487
|
```typespec
|
|
456
|
-
@Azure.ResourceManager.resourceBaseType(
|
|
488
|
+
@Azure.ResourceManager.resourceBaseType(baseType: "Tenant" | "Subscription" | "ResourceGroup" | "Location" | "Extension")
|
|
457
489
|
```
|
|
458
490
|
|
|
459
491
|
##### Target
|
|
@@ -462,9 +494,9 @@ This decorator sets the base type of the given resource.
|
|
|
462
494
|
|
|
463
495
|
##### Parameters
|
|
464
496
|
|
|
465
|
-
| Name
|
|
466
|
-
|
|
|
467
|
-
|
|
|
497
|
+
| Name | Type | Description |
|
|
498
|
+
| -------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
|
|
499
|
+
| baseType | `"Tenant" \| "Subscription" \| "ResourceGroup" \| "Location" \| "Extension"` | The built-in parent of the resource, this can be "Tenant", "Subscription", "ResourceGroup", "Location", or "Extension" |
|
|
468
500
|
|
|
469
501
|
#### `@resourceGroupResource`
|
|
470
502
|
|
|
@@ -5,14 +5,15 @@ export interface ResourceOperationOptions {
|
|
|
5
5
|
readonly omitTags?: boolean;
|
|
6
6
|
}
|
|
7
7
|
/**
|
|
8
|
-
* Marks the operation as being a collection action
|
|
8
|
+
* Marks the operation as being a collection action that is not associated with a specific resource instance.
|
|
9
|
+
* Collection actions are operations that act on a resource collection rather than a single resource,
|
|
10
|
+
* such as `checkNameAvailability` or provider-level actions.
|
|
9
11
|
*/
|
|
10
12
|
export type ArmResourceCollectionActionDecorator = (context: DecoratorContext, target: Operation) => DecoratorValidatorCallbacks | void;
|
|
11
13
|
/**
|
|
12
|
-
* `@
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* @param resource The resource to get the type of
|
|
14
|
+
* `@armProviderNameValue` sets the provider namespace value on operations.
|
|
15
|
+
* It is used internally to inject the correct provider namespace path segment
|
|
16
|
+
* for resource operations in auto-generated routes.
|
|
16
17
|
*/
|
|
17
18
|
export type ArmProviderNameValueDecorator = (context: DecoratorContext, target: Operation) => DecoratorValidatorCallbacks | void;
|
|
18
19
|
/**
|
|
@@ -44,7 +45,6 @@ export type IdentifiersDecorator = (context: DecoratorContext, entity: ModelProp
|
|
|
44
45
|
* namespace Microsoft.ContosoService;
|
|
45
46
|
* ```
|
|
46
47
|
* @param providerNamespace Provider namespace
|
|
47
|
-
* @param libraryNamespaces a library namespace containing types for this namespace
|
|
48
48
|
*/
|
|
49
49
|
export type ArmProviderNamespaceDecorator = (context: DecoratorContext, target: Namespace, providerNamespace?: string) => DecoratorValidatorCallbacks | void;
|
|
50
50
|
/**
|
|
@@ -55,7 +55,9 @@ export type ArmProviderNamespaceDecorator = (context: DecoratorContext, target:
|
|
|
55
55
|
*/
|
|
56
56
|
export type UseLibraryNamespaceDecorator = (context: DecoratorContext, target: Namespace, ...namespaces: Namespace[]) => DecoratorValidatorCallbacks | void;
|
|
57
57
|
/**
|
|
58
|
-
* `@armLibraryNamespace` designates a namespace as
|
|
58
|
+
* `@armLibraryNamespace` designates a namespace as containing Azure Resource Manager Provider information.
|
|
59
|
+
* This is used for library namespaces that define reusable ARM resource types that can be shared
|
|
60
|
+
* across multiple provider specifications.
|
|
59
61
|
*
|
|
60
62
|
* @example
|
|
61
63
|
* ```typespec
|
|
@@ -124,48 +126,55 @@ export type ResourceGroupResourceDecorator = (context: DecoratorContext, target:
|
|
|
124
126
|
*/
|
|
125
127
|
export type ExtensionResourceDecorator = (context: DecoratorContext, target: Model) => DecoratorValidatorCallbacks | void;
|
|
126
128
|
/**
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
+
* Marks the operation as a custom action on a specific Azure Resource Manager resource type.
|
|
130
|
+
* This decorator associates a POST action operation with its resource,
|
|
131
|
+
* identifying the semantics of the operation as a resource action over a specific resource for documentation,
|
|
132
|
+
* resource validation, and use by downstream emitters.
|
|
129
133
|
*
|
|
130
134
|
* @param resourceModel Resource model
|
|
131
135
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
132
136
|
*/
|
|
133
137
|
export type ArmResourceActionDecorator = (context: DecoratorContext, target: Operation, resourceModel: Model, resourceName?: string) => DecoratorValidatorCallbacks | void;
|
|
134
138
|
/**
|
|
135
|
-
*
|
|
136
|
-
*
|
|
139
|
+
* Marks the operation as a create or update (PUT) operation for a specific Azure Resource Manager resource type.
|
|
140
|
+
* This decorator identifies the semantics of the operation as a CreateOrReplace lifecycle operation over a particular resource,
|
|
141
|
+
* for use in documentation, resource validation, and downstream emitters.
|
|
137
142
|
*
|
|
138
143
|
* @param resourceModel Resource model
|
|
139
144
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
140
145
|
*/
|
|
141
146
|
export type ArmResourceCreateOrUpdateDecorator = (context: DecoratorContext, target: Operation, resourceModel: Model, resourceName?: string) => DecoratorValidatorCallbacks | void;
|
|
142
147
|
/**
|
|
143
|
-
*
|
|
144
|
-
*
|
|
148
|
+
* Marks the operation as a read (GET) operation for a specific Azure Resource Manager resource type.
|
|
149
|
+
* This decorator identifies the semantics of the operation as a Read lifecycle operation over a particular resource,
|
|
150
|
+
* for use in documentation, resource validation, and downstream emitters.
|
|
145
151
|
*
|
|
146
152
|
* @param resourceModel Resource model
|
|
147
153
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
148
154
|
*/
|
|
149
155
|
export type ArmResourceReadDecorator = (context: DecoratorContext, target: Operation, resourceModel: Model, resourceName?: string) => DecoratorValidatorCallbacks | void;
|
|
150
156
|
/**
|
|
151
|
-
*
|
|
152
|
-
*
|
|
157
|
+
* Marks the operation as an update (PATCH) operation for a specific Azure Resource Manager resource type.
|
|
158
|
+
* This decorator identifies the operation as an Update lifecycle operation over the resource for use in documentation,
|
|
159
|
+
* resource validation, and downstream emitters.
|
|
153
160
|
*
|
|
154
161
|
* @param resourceModel Resource model
|
|
155
162
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
156
163
|
*/
|
|
157
164
|
export type ArmResourceUpdateDecorator = (context: DecoratorContext, target: Operation, resourceModel: Model, resourceName?: string) => DecoratorValidatorCallbacks | void;
|
|
158
165
|
/**
|
|
159
|
-
*
|
|
160
|
-
*
|
|
166
|
+
* Marks the operation as a delete (DELETE) operation for a specific Azure Resource Manager resource type.
|
|
167
|
+
* This decorator identifies the operation as a Delete lifecycle operation over the resource for us in documentation,
|
|
168
|
+
* resource validation, and downstream emitters.
|
|
161
169
|
*
|
|
162
170
|
* @param resourceModel Resource model
|
|
163
171
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
164
172
|
*/
|
|
165
173
|
export type ArmResourceDeleteDecorator = (context: DecoratorContext, target: Operation, resourceModel: Model, resourceName?: string) => DecoratorValidatorCallbacks | void;
|
|
166
174
|
/**
|
|
167
|
-
*
|
|
168
|
-
*
|
|
175
|
+
* Marks the operation as a list (GET collection) operation for a specific Azure Resource Manager resource type.
|
|
176
|
+
* This decorator identifies the semantics of the operation as a collection list operation over a resource type and a particular scope for documentation,
|
|
177
|
+
* resource validation, and downstream emitters.
|
|
169
178
|
*
|
|
170
179
|
* @param resourceModel Resource model
|
|
171
180
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
@@ -209,18 +218,19 @@ export type ArmResourceOperationsDecorator = (context: DecoratorContext, target:
|
|
|
209
218
|
export type ArmCommonTypesVersionDecorator = (context: DecoratorContext, target: Namespace | EnumMember, version: string | EnumValue) => DecoratorValidatorCallbacks | void;
|
|
210
219
|
/**
|
|
211
220
|
* This decorator is used on Azure Resource Manager resources that are not based on
|
|
212
|
-
* Azure.ResourceManager common types.
|
|
221
|
+
* Azure.ResourceManager common types. It marks a model as an ARM virtual resource,
|
|
222
|
+
* which is useful for defining the scope of resources used only as parents for child resources, or scopes for extension resources.
|
|
213
223
|
*
|
|
214
|
-
* @param propertiesType : The type of the resource properties.
|
|
215
224
|
* @param provider Optional. The resource provider namespace for the virtual resource.
|
|
216
225
|
*/
|
|
217
226
|
export type ArmVirtualResourceDecorator = (context: DecoratorContext, target: Model, provider?: string) => DecoratorValidatorCallbacks | void;
|
|
218
227
|
/**
|
|
219
|
-
* This decorator sets the base type of the given resource
|
|
228
|
+
* This decorator sets the base type of the given resource, indicating where in the
|
|
229
|
+
* Azure Resource Manager hierarchy the resource is located.
|
|
220
230
|
*
|
|
221
|
-
* @param
|
|
231
|
+
* @param baseType The built-in parent of the resource, this can be "Tenant", "Subscription", "ResourceGroup", "Location", or "Extension"
|
|
222
232
|
*/
|
|
223
|
-
export type ResourceBaseTypeDecorator = (context: DecoratorContext, target: Model,
|
|
233
|
+
export type ResourceBaseTypeDecorator = (context: DecoratorContext, target: Model, baseType: Type) => DecoratorValidatorCallbacks | void;
|
|
224
234
|
export type AzureResourceManagerDecorators = {
|
|
225
235
|
armResourceCollectionAction: ArmResourceCollectionActionDecorator;
|
|
226
236
|
armProviderNameValue: ArmProviderNameValueDecorator;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Azure.ResourceManager.d.ts","sourceRoot":"","sources":["../../generated-defs/Azure.ResourceManager.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,gBAAgB,EAChB,2BAA2B,EAC3B,UAAU,EACV,SAAS,EACT,SAAS,EACT,KAAK,EACL,aAAa,EACb,SAAS,EACT,SAAS,EACT,IAAI,EACL,MAAM,oBAAoB,CAAC;AAE5B,MAAM,WAAW,wBAAwB;IACvC,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChD,QAAQ,CAAC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IACrC,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;CAC7B;AAED
|
|
1
|
+
{"version":3,"file":"Azure.ResourceManager.d.ts","sourceRoot":"","sources":["../../generated-defs/Azure.ResourceManager.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,7 +4,7 @@ import "./types-ref.tsp";
|
|
|
4
4
|
import "./managed-identity-ref.tsp";
|
|
5
5
|
import "./managed-identity-with-delegation-ref.tsp";
|
|
6
6
|
import "./private-links-ref.tsp";
|
|
7
|
-
import "./customer-managed-keys.tsp";
|
|
7
|
+
import "./customer-managed-keys-ref.tsp";
|
|
8
8
|
import "./extended-location-ref.tsp";
|
|
9
9
|
import "./internal.tsp";
|
|
10
10
|
import "./commontypes.private.decorators.tsp";
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import "./customer-managed-keys.tsp";
|
|
2
|
+
|
|
3
|
+
using Azure.ResourceManager.CommonTypes.Private;
|
|
4
|
+
|
|
5
|
+
namespace Azure.ResourceManager.CommonTypes;
|
|
6
|
+
|
|
7
|
+
@@armCommonDefinition(
|
|
8
|
+
Encryption,
|
|
9
|
+
"encryption",
|
|
10
|
+
#{ version: Azure.ResourceManager.CommonTypes.Versions.v4, isDefault: true },
|
|
11
|
+
"customermanagedkeys.json"
|
|
12
|
+
);
|
|
13
|
+
@@armCommonDefinition(
|
|
14
|
+
Encryption,
|
|
15
|
+
"encryption",
|
|
16
|
+
Azure.ResourceManager.CommonTypes.Versions.v5,
|
|
17
|
+
"customermanagedkeys.json"
|
|
18
|
+
);
|
|
19
|
+
@@armCommonDefinition(
|
|
20
|
+
Encryption,
|
|
21
|
+
"encryption",
|
|
22
|
+
Azure.ResourceManager.CommonTypes.Versions.v6,
|
|
23
|
+
"customermanagedkeys.json"
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
@@armCommonDefinition(
|
|
27
|
+
CustomerManagedKeyEncryption,
|
|
28
|
+
"customerManagedKeyEncryption",
|
|
29
|
+
#{ version: Azure.ResourceManager.CommonTypes.Versions.v4, isDefault: true },
|
|
30
|
+
"customermanagedkeys.json"
|
|
31
|
+
);
|
|
32
|
+
@@armCommonDefinition(
|
|
33
|
+
CustomerManagedKeyEncryption,
|
|
34
|
+
"customerManagedKeyEncryption",
|
|
35
|
+
Azure.ResourceManager.CommonTypes.Versions.v5,
|
|
36
|
+
"customermanagedkeys.json"
|
|
37
|
+
);
|
|
38
|
+
@@armCommonDefinition(
|
|
39
|
+
CustomerManagedKeyEncryption,
|
|
40
|
+
"customerManagedKeyEncryption",
|
|
41
|
+
Azure.ResourceManager.CommonTypes.Versions.v6,
|
|
42
|
+
"customermanagedkeys.json"
|
|
43
|
+
);
|
|
@@ -92,7 +92,7 @@ interface NspConfigurationOperations<
|
|
|
92
92
|
ResourceParameter extends {} = NspConfigurationNameParameter<NspConfigurationKeyName>
|
|
93
93
|
> {
|
|
94
94
|
/**
|
|
95
|
-
*
|
|
95
|
+
* List the network security perimeter configurations to a resource
|
|
96
96
|
* @template ParentResource the parent resource of the NspConfiguration
|
|
97
97
|
* @template Resource Optional. The NspConfiguration resource being listed
|
|
98
98
|
* @template BaseParameters Optional. Allows overriding the operation parameters
|
|
@@ -127,7 +127,7 @@ interface NspConfigurationOperations<
|
|
|
127
127
|
>;
|
|
128
128
|
|
|
129
129
|
/**
|
|
130
|
-
*
|
|
130
|
+
* List the network security parameter configuration for a resource without pagination - this should only be used for legacy operations
|
|
131
131
|
* @template ParentResource the parent resource of the NspConfiguration
|
|
132
132
|
* @template Resource Optional. The NspConfiguration resource being listed
|
|
133
133
|
* @template BaseParameters Optional. Allows overriding the operation parameters
|
|
@@ -162,7 +162,7 @@ interface NspConfigurationOperations<
|
|
|
162
162
|
>;
|
|
163
163
|
|
|
164
164
|
/**
|
|
165
|
-
*
|
|
165
|
+
* GET a network security perimeter configuration for a particular resource
|
|
166
166
|
* @template ParentResource the parent resource of the NspConfiguration
|
|
167
167
|
* @template Resource the NspConfiguration resource being read
|
|
168
168
|
* @template BaseParameters Optional. Allows overriding the operation parameters
|
|
@@ -196,7 +196,7 @@ interface NspConfigurationOperations<
|
|
|
196
196
|
>;
|
|
197
197
|
|
|
198
198
|
/**
|
|
199
|
-
*
|
|
199
|
+
* Perform an action on a network security perimeter configuration for a particular resource
|
|
200
200
|
* @template ParentResource the parent resource of the NspConfiguration
|
|
201
201
|
* @template Request The request body type
|
|
202
202
|
* @template Response The success response for the read operation
|
|
@@ -238,7 +238,7 @@ interface NspConfigurationOperations<
|
|
|
238
238
|
): Response | Error;
|
|
239
239
|
|
|
240
240
|
/**
|
|
241
|
-
*
|
|
241
|
+
* Perform an action on a network security perimeter configuration for a particular resource
|
|
242
242
|
* @template ParentResource the parent resource of the NspConfiguration
|
|
243
243
|
* @template Request The request body type
|
|
244
244
|
* @template Response The success response for the read operation
|
|
@@ -344,8 +344,7 @@ union createdByType {
|
|
|
344
344
|
string,
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
-
/**
|
|
348
|
-
@doc("")
|
|
347
|
+
/** Resource Identity Type */
|
|
349
348
|
union ResourceIdentityType {
|
|
350
349
|
SystemAssigned: "SystemAssigned",
|
|
351
350
|
}
|
|
@@ -369,7 +368,7 @@ model Identity {
|
|
|
369
368
|
type?: ResourceIdentityType;
|
|
370
369
|
}
|
|
371
370
|
|
|
372
|
-
/**
|
|
371
|
+
/** Properties of a KeyVault */
|
|
373
372
|
model KeyVaultProperties {
|
|
374
373
|
/** Key vault uri to access the encryption key. */
|
|
375
374
|
keyIdentifier?: string;
|
package/lib/decorators.tsp
CHANGED
|
@@ -19,7 +19,6 @@ namespace Azure.ResourceManager;
|
|
|
19
19
|
* ```
|
|
20
20
|
*
|
|
21
21
|
* @param providerNamespace Provider namespace
|
|
22
|
-
* @param libraryNamespaces a library namespace containing types for this namespace
|
|
23
22
|
*
|
|
24
23
|
*/
|
|
25
24
|
extern dec armProviderNamespace(target: Namespace, providerNamespace?: valueof string);
|
|
@@ -32,7 +31,9 @@ extern dec armProviderNamespace(target: Namespace, providerNamespace?: valueof s
|
|
|
32
31
|
extern dec useLibraryNamespace(target: Namespace, ...namespaces: Namespace[]);
|
|
33
32
|
|
|
34
33
|
/**
|
|
35
|
-
* `@armLibraryNamespace` designates a namespace as
|
|
34
|
+
* `@armLibraryNamespace` designates a namespace as containing Azure Resource Manager Provider information.
|
|
35
|
+
* This is used for library namespaces that define reusable ARM resource types that can be shared
|
|
36
|
+
* across multiple provider specifications.
|
|
36
37
|
*
|
|
37
38
|
* @example
|
|
38
39
|
*
|
|
@@ -110,18 +111,25 @@ extern dec resourceGroupResource(target: Model);
|
|
|
110
111
|
extern dec extensionResource(target: Model);
|
|
111
112
|
|
|
112
113
|
/**
|
|
113
|
-
* `@
|
|
114
|
-
*
|
|
115
|
-
*
|
|
114
|
+
* `@armProviderNameValue` sets the provider namespace value on operations.
|
|
115
|
+
* It is used internally to inject the correct provider namespace path segment
|
|
116
|
+
* for resource operations in auto-generated routes.
|
|
116
117
|
*/
|
|
117
118
|
extern dec armProviderNameValue(target: Operation);
|
|
118
119
|
|
|
119
120
|
/**
|
|
120
|
-
* Marks the operation as being a collection action
|
|
121
|
+
* Marks the operation as being a collection action that is not associated with a specific resource instance.
|
|
122
|
+
* Collection actions are operations that act on a resource collection rather than a single resource,
|
|
123
|
+
* such as `checkNameAvailability` or provider-level actions.
|
|
121
124
|
*/
|
|
122
125
|
extern dec armResourceCollectionAction(target: Operation);
|
|
123
126
|
|
|
124
127
|
/**
|
|
128
|
+
* Marks the operation as a custom action on a specific Azure Resource Manager resource type.
|
|
129
|
+
* This decorator associates a POST action operation with its resource,
|
|
130
|
+
* identifying the semantics of the operation as a resource action over a specific resource for documentation,
|
|
131
|
+
* resource validation, and use by downstream emitters.
|
|
132
|
+
*
|
|
125
133
|
* @param resourceModel Resource model
|
|
126
134
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
127
135
|
*/
|
|
@@ -132,6 +140,10 @@ extern dec armResourceAction(
|
|
|
132
140
|
);
|
|
133
141
|
|
|
134
142
|
/**
|
|
143
|
+
* Marks the operation as a create or update (PUT) operation for a specific Azure Resource Manager resource type.
|
|
144
|
+
* This decorator identifies the semantics of the operation as a CreateOrReplace lifecycle operation over a particular resource,
|
|
145
|
+
* for use in documentation, resource validation, and downstream emitters.
|
|
146
|
+
*
|
|
135
147
|
* @param resourceModel Resource model
|
|
136
148
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
137
149
|
*/
|
|
@@ -142,12 +154,20 @@ extern dec armResourceCreateOrUpdate(
|
|
|
142
154
|
);
|
|
143
155
|
|
|
144
156
|
/**
|
|
157
|
+
* Marks the operation as a read (GET) operation for a specific Azure Resource Manager resource type.
|
|
158
|
+
* This decorator identifies the semantics of the operation as a Read lifecycle operation over a particular resource,
|
|
159
|
+
* for use in documentation, resource validation, and downstream emitters.
|
|
160
|
+
*
|
|
145
161
|
* @param resourceModel Resource model
|
|
146
162
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
147
163
|
*/
|
|
148
164
|
extern dec armResourceRead(target: Operation, resourceModel: Model, resourceName?: valueof string);
|
|
149
165
|
|
|
150
166
|
/**
|
|
167
|
+
* Marks the operation as an update (PATCH) operation for a specific Azure Resource Manager resource type.
|
|
168
|
+
* This decorator identifies the operation as an Update lifecycle operation over the resource for use in documentation,
|
|
169
|
+
* resource validation, and downstream emitters.
|
|
170
|
+
*
|
|
151
171
|
* @param resourceModel Resource model
|
|
152
172
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
153
173
|
*/
|
|
@@ -158,6 +178,10 @@ extern dec armResourceUpdate(
|
|
|
158
178
|
);
|
|
159
179
|
|
|
160
180
|
/**
|
|
181
|
+
* Marks the operation as a delete (DELETE) operation for a specific Azure Resource Manager resource type.
|
|
182
|
+
* This decorator identifies the operation as a Delete lifecycle operation over the resource for us in documentation,
|
|
183
|
+
* resource validation, and downstream emitters.
|
|
184
|
+
*
|
|
161
185
|
* @param resourceModel Resource model
|
|
162
186
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
163
187
|
*/
|
|
@@ -168,6 +192,10 @@ extern dec armResourceDelete(
|
|
|
168
192
|
);
|
|
169
193
|
|
|
170
194
|
/**
|
|
195
|
+
* Marks the operation as a list (GET collection) operation for a specific Azure Resource Manager resource type.
|
|
196
|
+
* This decorator identifies the semantics of the operation as a collection list operation over a resource type and a particular scope for documentation,
|
|
197
|
+
* resource validation, and downstream emitters.
|
|
198
|
+
*
|
|
171
199
|
* @param resourceModel Resource model
|
|
172
200
|
* @param resourceName Optional. The name of the resource. If not provided, the name of the resource model will be used.
|
|
173
201
|
*/
|
|
@@ -242,21 +270,22 @@ extern dec armCommonTypesVersion(
|
|
|
242
270
|
|
|
243
271
|
/**
|
|
244
272
|
* This decorator is used on Azure Resource Manager resources that are not based on
|
|
245
|
-
* Azure.ResourceManager common types.
|
|
273
|
+
* Azure.ResourceManager common types. It marks a model as an ARM virtual resource,
|
|
274
|
+
* which is useful for defining the scope of resources used only as parents for child resources, or scopes for extension resources.
|
|
246
275
|
*
|
|
247
|
-
* @param propertiesType: The type of the resource properties.
|
|
248
276
|
* @param provider Optional. The resource provider namespace for the virtual resource.
|
|
249
277
|
*/
|
|
250
278
|
extern dec armVirtualResource(target: Model, provider?: valueof string);
|
|
251
279
|
|
|
252
280
|
/**
|
|
253
|
-
* This decorator sets the base type of the given resource
|
|
281
|
+
* This decorator sets the base type of the given resource, indicating where in the
|
|
282
|
+
* Azure Resource Manager hierarchy the resource is located.
|
|
254
283
|
*
|
|
255
|
-
* @param
|
|
284
|
+
* @param baseType The built-in parent of the resource, this can be "Tenant", "Subscription", "ResourceGroup", "Location", or "Extension"
|
|
256
285
|
*/
|
|
257
286
|
extern dec resourceBaseType(
|
|
258
287
|
target: Model,
|
|
259
|
-
|
|
288
|
+
baseType: "Tenant" | "Subscription" | "ResourceGroup" | "Location" | "Extension"
|
|
260
289
|
);
|
|
261
290
|
|
|
262
291
|
/**
|
|
@@ -176,7 +176,7 @@ op CreateOrReplaceSync<
|
|
|
176
176
|
>;
|
|
177
177
|
|
|
178
178
|
/**
|
|
179
|
-
*
|
|
179
|
+
* A long-running resource CreateOrUpdate (PUT)
|
|
180
180
|
* @template TargetResource the target resource, e.g. Extension.Subscription or Extension.ManagementGroup or Extension.ResourceGroup
|
|
181
181
|
* @template ExtensionResource the resource being created or replaced
|
|
182
182
|
* @template LroHeaders Optional. Allows overriding the lro headers returned on resource create
|
|
@@ -288,7 +288,7 @@ op CustomPatchSync<
|
|
|
288
288
|
>;
|
|
289
289
|
|
|
290
290
|
/**
|
|
291
|
-
*
|
|
291
|
+
* Delete a resource asynchronously
|
|
292
292
|
* @template TargetResource The target resource, e.g. Extension.Subscription or Extension.ManagementGroup or Extension.ResourceGroup
|
|
293
293
|
* @template ExtensionResource The resource being deleted
|
|
294
294
|
* @template Response The response type for the operation
|
|
@@ -314,7 +314,7 @@ op DeleteAsyncBase<
|
|
|
314
314
|
| Error;
|
|
315
315
|
|
|
316
316
|
/**
|
|
317
|
-
*
|
|
317
|
+
* Delete a resource asynchronously.
|
|
318
318
|
* @template TargetResource The target resource, e.g. Extension.Subscription or Extension.ManagementGroup or Extension.ResourceGroup
|
|
319
319
|
* @template ExtensionResource The resource being deleted
|
|
320
320
|
* @template LroHeaders Optional. Allows overriding the headers in the Accepted response
|
|
@@ -351,7 +351,7 @@ op DeleteAsync<
|
|
|
351
351
|
>;
|
|
352
352
|
|
|
353
353
|
/**
|
|
354
|
-
*
|
|
354
|
+
* Delete a resource asynchronously
|
|
355
355
|
* @template TargetResource The target resource, e.g. Extension.Subscription or Extension.ManagementGroup or Extension.ResourceGroup
|
|
356
356
|
* @template ExtensionResource The resource being deleted
|
|
357
357
|
* @template LroHeaders Optional. Allows overriding the headers returned in the Accepted response
|
|
@@ -444,7 +444,7 @@ op ActionAsyncBase<
|
|
|
444
444
|
): Response | Error;
|
|
445
445
|
|
|
446
446
|
/**
|
|
447
|
-
*
|
|
447
|
+
* A long-running resource action.
|
|
448
448
|
* @template TargetResource The target resource, e.g. Extension.Subscription or Extension.ManagementGroup or Extension.ResourceGroup
|
|
449
449
|
* @template ExtensionResource The resource being acted upon
|
|
450
450
|
* @template Request The request model for the action
|
|
@@ -459,6 +459,7 @@ op ActionAsyncBase<
|
|
|
459
459
|
@extensionResourceOperation(TargetResource, ExtensionResource, "action", OverrideResourceName)
|
|
460
460
|
@returnsDoc("Azure operation completed successfully.")
|
|
461
461
|
@enforceConstraint(ExtensionResource, Foundations.Resource)
|
|
462
|
+
@doc("")
|
|
462
463
|
op ActionAsync<
|
|
463
464
|
TargetResource extends Foundations.SimpleResource,
|
|
464
465
|
ExtensionResource extends Foundations.SimpleResource,
|
|
@@ -520,7 +521,7 @@ op ActionSync<
|
|
|
520
521
|
): Response | Error;
|
|
521
522
|
|
|
522
523
|
/**
|
|
523
|
-
*
|
|
524
|
+
* A long-running resource action that returns no content.
|
|
524
525
|
* @template TargetResource The target resource, e.g. Extension.Subscription or Extension.ManagementGroup or Extension.ResourceGroup
|
|
525
526
|
* @template ExtensionResource The resource being acted upon
|
|
526
527
|
* @template Request The request model for the action
|
|
@@ -535,6 +536,7 @@ op ActionSync<
|
|
|
535
536
|
@enforceConstraint(TargetResource, Foundations.Resource)
|
|
536
537
|
@enforceConstraint(ExtensionResource, Foundations.Resource)
|
|
537
538
|
@post
|
|
539
|
+
@doc("")
|
|
538
540
|
op ActionNoResponseContentAsync<
|
|
539
541
|
TargetResource extends Foundations.SimpleResource,
|
|
540
542
|
ExtensionResource extends Foundations.SimpleResource,
|