-
Notifications
You must be signed in to change notification settings - Fork 41
/
arm.foundations.tsp
746 lines (630 loc) · 23.4 KB
/
arm.foundations.tsp
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
using TypeSpec.Http;
using TypeSpec.OpenAPI;
using TypeSpec.Versioning;
using Azure.ResourceManager.Private;
namespace Azure.ResourceManager.Foundations;
/**
* A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results.
*/
@armCommonDefinition("OperationListResult", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("OperationListResult", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("OperationListResult", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("""
A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results.
""")
model OperationListResult is Azure.Core.Page<Operation>;
/**
* Base model that defines common properties for all ARM resources.
*/
@doc("Common properties for all ARM resources.")
model ArmResource extends ArmResourceBase {
@doc("Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}")
@visibility("read")
id: string;
// The name property must be included by the resource type author!
@doc("The type of the resource. E.g. \"Microsoft.Compute/virtualMachines\" or \"Microsoft.Storage/storageAccounts\"")
@visibility("read")
type: string;
@doc("Azure Resource Manager metadata containing createdBy and modifiedBy information.")
@visibility("read")
systemData?: SystemData;
}
/** Base class used for type definitions */
model ArmResourceBase {}
/**
* The base tracked resource.
*/
@armCommonDefinition("TrackedResource", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("TrackedResource", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("TrackedResource", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("The resource model definition for an Azure Resource Manager tracked top level resource")
model TrackedResourceBase extends ArmResource {
@doc("The geo-location where the resource lives")
@visibility("read", "create")
location: string;
...ArmTagsProperty;
}
/**
* The base proxy resource.
*/
@doc("The base proxy resource.")
@armCommonDefinition("ProxyResource", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("ProxyResource", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("ProxyResource", Azure.ResourceManager.CommonTypes.Versions.v5)
model ProxyResourceBase extends ArmResource {}
/**
* The base extension resource.
*/
// Note that ProxyResource is the base definition for both kinds of resources
@doc("The base extension resource.")
@armCommonDefinition("ProxyResource", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("ProxyResource", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("ProxyResource", Azure.ResourceManager.CommonTypes.Versions.v5)
model ExtensionResourceBase extends ArmResource {}
/**
* An internal enum to indicate the resource support for various path types
*/
enum ResourceHome {
@doc("The resource is bound to a tenant")
Tenant,
@doc("The resource is bound to a subscription")
Subscription,
@doc("The resource is bound to a location")
Location,
@doc("The resource is bound to a resource group")
ResourceGroup,
@doc("The resource is bound to an extension")
Extension,
}
/**
* The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system"
*/
@doc("""
The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system"
""")
enum Origin {
@doc("Indicates the operation is initiated by a user.")
user,
@doc("Indicates the operation is initiated by a system.")
system,
@doc("Indicates the operation is initiated by a user or system.")
`user,system`,
}
/**
* Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
*/
@doc("""
Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
""")
enum ActionType {
@doc("Actions are for internal-only APIs.")
Internal,
}
/**
* Localized display information for and operation.
*/
@armCommonDefinition("OperationDisplay", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("OperationDisplay", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("OperationDisplay", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("Localized display information for and operation.")
model OperationDisplay {
@doc("""
The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute".
""")
provider?: string;
@doc("""
The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections".
""")
resource?: string;
@doc("""
The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine".
""")
operation?: string;
@doc("The short, localized friendly description of the operation; suitable for tool tips and detailed views.")
description?: string;
}
/**
* The current status of an async operation.
*/
@armCommonDefinition("OperationStatusResult", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("OperationStatusResult", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("OperationStatusResult", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("The current status of an async operation.")
model OperationStatusResult {
@doc("Fully qualified ID for the async operation.")
id?: string;
@doc("Name of the async operation.")
name?: string;
@doc("Operation status.")
status: string;
@doc("Percent of the operation that is complete.")
@minValue(0)
@maxValue(100)
percentComplete?: int32;
@doc("The start time of the operation.")
startTime?: utcDateTime;
@doc("The end time of the operation.")
endTime?: utcDateTime;
@doc("The operations list.")
operations: OperationStatusResult[];
@doc("If present, details of the operation error.")
error?: ErrorDetail;
}
/**
* The error detail.
*/
@armCommonDefinition("ErrorDetail", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("ErrorDetail", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("ErrorDetail", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("The error detail.")
model ErrorDetail {
@doc("The error code.")
@visibility("read")
code?: string;
@doc("The error message.")
@visibility("read")
message?: string;
@doc("The error target.")
@visibility("read")
target?: string;
@extension("x-ms-identifiers", ["message", "target"])
@doc("The error details.")
@visibility("read")
details?: ErrorDetail[];
@extension("x-ms-identifiers", ["message", "target"])
@doc("The error additional info.")
@visibility("read")
additionalInfo?: ErrorAdditionalInfo[];
}
/**
* Base parameters for a resource.
* @template TResource The type of the resource.
*/
@resourceBaseParametersOf(TResource)
model BaseParameters<TResource extends ArmResourceBase> {
...ApiVersionParameter;
// unless tenant or extension
...SubscriptionIdParameter;
// deprecated, should not be used
...LocationParameter;
// unless tenant, subscription, location, or extension
...ResourceGroupParameter;
// unless tenant, subscription, location, or resourceGroup
...ResourceUriParameter;
}
/**
* The static parameters for a tenant-based resource
*/
model TenantBaseParameters {
...ApiVersionParameter;
}
/**
* The static parameters for a subscription based resource
*/
model SubscriptionBaseParameters is TenantBaseParameters {
...SubscriptionIdParameter;
}
/**
* The static parameters for a location-based resource
*/
model LocationBaseParameters is SubscriptionBaseParameters {
...LocationParameter;
}
/**
* The static parameters for a resource-group based resource
*/
model ResourceGroupBaseParameters is SubscriptionBaseParameters {
...ResourceGroupParameter;
}
/**
* The static parameters for an extension resource
*/
model ExtensionBaseParameters is TenantBaseParameters {
...ResourceUriParameter;
}
/**
* The resource management error additional info.
*/
@armCommonDefinition("ErrorAdditionalInfo", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("ErrorAdditionalInfo", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("ErrorAdditionalInfo", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("The resource management error additional info.")
model ErrorAdditionalInfo {
@doc("The additional info type.")
@visibility("read")
type?: string;
@doc("The additional info.")
@visibility("read")
info?: {};
}
/**
* Standard type definition for ARM Tags property.
*
* It is included in the TrackedResource template definition.
*/
@doc("The ARM Resource tags.")
model ArmTagsProperty {
@doc("Resource tags.")
tags?: Record<string>;
}
/**
* The kind of entity that created the resource.
*/
// NOTE: This is how the enum is named in types.json
@doc("The kind of entity that created the resource.")
enum createdByType {
@doc("The entity was created by a user.")
User,
@doc("The entity was created by an application.")
Application,
@doc("The entity was created by a managed identity.")
ManagedIdentity,
@doc("The entity was created by a key.")
Key,
}
/**
* Metadata pertaining to creation and last modification of the resource.
*/
@armCommonDefinition("systemData", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("systemData", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("systemData", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("Metadata pertaining to creation and last modification of the resource.")
model SystemData {
@visibility("read")
@doc("The identity that created the resource.")
createdBy?: string;
@visibility("read")
@doc("The type of identity that created the resource.")
createdByType?: createdByType;
@visibility("read")
@doc("The type of identity that created the resource.")
createdAt?: plainDate;
@visibility("read")
@doc("The identity that last modified the resource.")
lastModifiedBy?: string;
@visibility("read")
@doc("The type of identity that last modified the resource.")
lastModifiedByType?: createdByType;
@visibility("read")
@doc("The timestamp of resource last modification (UTC)")
lastModifiedAt?: plainDate;
}
/**
* The properties of the managed service identities assigned to this resource.
*/
@armCommonDefinition(
"ManagedServiceIdentity",
{
version: Azure.ResourceManager.CommonTypes.Versions.v4,
isDefault: true,
},
"managedidentity.json"
)
@armCommonDefinition(
"ManagedServiceIdentity",
Azure.ResourceManager.CommonTypes.Versions.v5,
"managedidentity.json"
)
@doc("The properties of the managed service identities assigned to this resource.")
model ManagedIdentityProperties {
@doc("The Active Directory tenant id of the principal.")
@visibility("read")
tenantId?: string;
@doc("The active directory identifier of this principal.")
@visibility("read")
principalId?: string;
@doc("The type of managed identity assigned to this resource.")
type: ManagedIdentityType;
@doc("The identities assigned to this resource by the user.")
userAssignedIdentities?: Record<UserAssignedIdentity>;
}
/**
* The properties of the service-assigned identity associated with this resource.
*/
@armCommonDefinition(
"SystemAssignedServiceIdentity",
{
version: Azure.ResourceManager.CommonTypes.Versions.v4,
isDefault: true,
},
"managedidentity.json"
)
@armCommonDefinition(
"SystemAssignedServiceIdentity",
Azure.ResourceManager.CommonTypes.Versions.v5,
"managedidentity.json"
)
@doc("The properties of the service-assigned identity associated with this resource.")
model ManagedSystemIdentityProperties {
@doc("The Active Directory tenant id of the principal.")
@visibility("read")
tenantId?: string;
@doc("The active directory identifier of this principal.")
@visibility("read")
principalId?: string;
@doc("The type of managed identity assigned to this resource.")
type: ManagedSystemIdentityType;
}
/**
* A managed identity assigned by the user.
*/
@doc("A managed identity assigned by the user.")
model UserAssignedIdentity {
@doc("The active directory client identifier for this principal.")
clientId?: string;
@doc("The active directory identifier for this principal.")
principalId?: string;
}
/**
* The kind of managed identity assigned to this resource.
*/
@doc("The kind of managed identity assigned to this resource.")
enum ManagedIdentityType {
@doc("No managed identity.")
None,
@doc("System assigned managed identity.")
SystemAssigned,
@doc("User assigned managed identity.")
UserAssigned,
@doc("System and user assigned managed identity.")
SystemAndUserAssigned: "SystemAssigned, UserAssigned",
}
/**
* The kind of managemed identity assigned to this resource.
*/
@doc("The kind of managemed identity assigned to this resource.")
enum ManagedSystemIdentityType {
@doc("No managed system identity.")
None,
@doc("System assigned managed system identity.")
SystemAssigned,
}
/**
* Defines a properties type used to create named resource update models.
* This type is not used directly, it is referenced by ResourceUpdateModel.
* @template TResource The type of the resource.
* @template TProperties The type of the properties.
*/
@doc("The updatable properties of the {name}.", TResource)
@friendlyName("{name}UpdateProperties", TResource)
model ResourceUpdateModelProperties<
TResource extends ArmResource,
TProperties extends TypeSpec.Reflection.Model
> is OptionalProperties<UpdateableProperties<TProperties>>;
/**
* Defines a model type used to create named resource update models
* e.g. `model MyResourceUpdate is ResourceUpdate<MyResourceProperties> {}`
* @template TResource The type of the resource.
* @template TProperties The type of the properties.
*/
@doc("The type used for update operations of the {name}.", TResource)
@friendlyName("{name}Update", TResource)
@omitIfEmpty("properties")
model ResourceUpdateModel<
TResource extends ArmResource,
TProperties extends TypeSpec.Reflection.Model
> is OptionalProperties<UpdateableProperties<OmitProperties<TResource, "Name" | "name">>> {
@extension("x-ms-client-flatten", true)
properties?: ResourceUpdateModelProperties<TResource, TProperties>;
}
/**
* The type used for updating tags in resources.
* @template TResource The type of the resource.
*/
@doc("The type used for updating tags in {name} resources.", TResource)
@friendlyName("{name}TagsUpdate", TResource)
model TagsUpdateModel<TResource extends ArmResource> {
...ArmTagsProperty;
}
// Tenant resource operation definitions
alias TenantParentScope<TResource extends ArmResource> = TenantScope<TResource>;
/**
* Parameter model for listing a resource at the tenant scope
* @template TResource The type of the resource.
*/
model TenantScope<TResource extends ArmResource>
is ResourceParentParameters<TResource, TenantBaseParameters>;
/**
* Parameter model for listing a resource at the subscription scope
* @template TResource The type of the resource.
*/
model SubscriptionScope<TResource extends ArmResource>
is ResourceParentParameters<TResource, SubscriptionBaseParameters>;
/**
* Parameter model for listing a resource at the location scope
* @template TResource The type of the resource.
*/
model LocationScope<TResource extends ArmResource>
is ResourceParentParameters<TResource, LocationBaseParameters>;
/**
* Parameter model for listing an extension resource
* @template TResource The type of the resource.
*/
model ExtensionScope<TResource extends ArmResource>
is ResourceParentParameters<TResource, ExtensionBaseParameters>;
/**
* Parameter model for listing a resource at the resource group scope
* @template TResource The type of the resource.
*/
model ResourceGroupScope<TResource extends ArmResource> is ResourceParentParameters<TResource>;
/**
* Details of the resource plan.
*/
@doc("Details of the resource plan.")
@armCommonDefinition("Plan", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("Plan", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("Plan", Azure.ResourceManager.CommonTypes.Versions.v5)
model ResourcePlanType {
@doc("A user defined name of the 3rd Party Artifact that is being procured.")
name: string;
@doc("The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic")
publisher: string;
@doc("The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding. ")
product: string;
@doc("A publisher provided promotion code as provisioned in Data Market for the said product/artifact.")
promotionCode?: string;
@doc("The version of the desired product/artifact.")
version?: string;
}
/**
* The SKU (Stock Keeping Unit) assigned to this resource.
*/
@doc("The SKU (Stock Keeping Unit) assigned to this resource.")
@armCommonDefinition("Sku", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("Sku", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("Sku", Azure.ResourceManager.CommonTypes.Versions.v5)
model ResourceSkuType {
@doc("The name of the SKU, usually a combination of letters and numbers, for example, 'P3'")
name: string;
@doc("This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.")
tier?: SkuTier;
@doc("The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.")
size?: string;
@doc("If the service has different generations of hardware, for the same SKU, then that can be captured here.")
family?: string;
@doc("If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.")
capacity?: int32;
}
/**
* Available service tiers for the SKU.
*/
@doc("Available service tiers for the SKU.")
enum SkuTier {
@doc("The Free service tier.")
Free,
@doc("The Basic service tier.")
Basic,
@doc("The Standard service tier.")
Standard,
@doc("The Premium service tier.")
Premium,
}
/**
* The type used for update operations of the resource.
* @template TResource The type of the resource.
* @template TProperties The type of the properties.
*/
@doc("The type used for update operations of the {name}.", TResource)
@friendlyName("{name}Update", TResource)
model ProxyResourceUpdateModel<
TResource extends ArmResource,
TProperties extends TypeSpec.Reflection.Model
> {
@extension("x-ms-client-flatten", true)
properties?: ResourceUpdateModelProperties<TResource, TProperties>;
}
/**
* Details of a REST API operation, returned from the Resource Provider Operations API
*/
@armCommonDefinition("Operation", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("Operation", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("Operation", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("Details of a REST API operation, returned from the Resource Provider Operations API")
model Operation {
@doc("""
The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action"
""")
@visibility("read")
name?: string;
@doc("""
Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for ARM/control-plane operations.
""")
@visibility("read")
isDataAction?: boolean;
@doc("Localized display information for this particular operation.")
display?: OperationDisplay;
@doc("""
The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system"
""")
@visibility("read")
origin?: Origin;
@doc("""
Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
""")
actionType?: ActionType;
}
/**
* The default operationId parameter type.
*/
@doc("The default operationId parameter type.")
model OperationIdParameter {
@path
@minLength(1)
@doc("The ID of an ongoing async operation.")
@armCommonParameter("OperationIdParameter", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonParameter("OperationIdParameter", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonParameter("OperationIdParameter", Azure.ResourceManager.CommonTypes.Versions.v5)
operationId: string;
}
/**
* The check availability request body.
*/
@armCommonDefinition("CheckNameAvailabilityRequest", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("CheckNameAvailabilityRequest", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("CheckNameAvailabilityRequest", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("The check availability request body.")
model CheckNameAvailabilityRequest {
@doc("The name of the resource for which availability needs to be checked.")
name?: string;
@doc("The resource type.")
type?: string;
}
/**
* Possible reasons for a name not being available.
*/
@doc("Possible reasons for a name not being available.")
enum CheckNameAvailabilityReason {
@doc("Name is invalid.")
Invalid,
@doc("Name already exists.")
AlreadyExists,
}
/**
* The check availability result.
*/
@armCommonDefinition("CheckNameAvailabilityResponse", Azure.ResourceManager.CommonTypes.Versions.v3)
@armCommonDefinition("CheckNameAvailabilityResponse", Azure.ResourceManager.CommonTypes.Versions.v4)
@armCommonDefinition("CheckNameAvailabilityResponse", Azure.ResourceManager.CommonTypes.Versions.v5)
@doc("The check availability result.")
model CheckNameAvailabilityResponse {
@doc("Indicates if the resource name is available.")
nameAvailable?: boolean;
@doc("The reason why the given name is not available.")
reason?: CheckNameAvailabilityReason;
@doc("Detailed reason why the given name is not available.")
message?: string;
}
alias DefaultProviderNamespace = {
@path
@TypeSpec.Rest.segment("providers")
@doc("The provider namespace for the resource.")
provider: "Microsoft.ThisWillBeReplaced";
};
/**
* Adds check name availability operation, normally used if
* a resource name must be globally unique (for example, if the resource
* exposes an endpoint that uses the resource name in the url)
* @template TScopeParameters A parameter model with properties representing the scope of the resource
* @template TRequest The operation request body
* @template TResponse The operation response
* @template TAdditionalParams A parameter model with properties representing non-path parameters
*/
@TypeSpec.Rest.autoRoute
@armResourceCollectionAction
@armProviderNameValue
@doc("Implements global CheckNameAvailability operations")
@TypeSpec.Rest.action("checkNameAvailability")
@post
op checkNameAvailability<
TScopeParameters extends TypeSpec.Reflection.Model,
TRequest extends TypeSpec.Reflection.Model = Azure.ResourceManager.Foundations.CheckNameAvailabilityRequest,
TResponse extends TypeSpec.Reflection.Model = CheckNameAvailabilityResponse,
TAdditionalParams extends TypeSpec.Reflection.Model = {}
>(
...ApiVersionParameter,
...TScopeParameters,
...TAdditionalParams,
@doc("The CheckAvailability request")
@body
body: TRequest,
): TResponse | ErrorResponse;