-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
CommonDefinitions.json
2861 lines (2861 loc) · 90.7 KB
/
CommonDefinitions.json
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
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"swagger": "2.0",
"info": {
"version": "2019-08-01",
"title": "Common Definitions"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {},
"definitions": {
"ApiDefinitionInfo": {
"description": "Information about the formal API definition for the app.",
"type": "object",
"properties": {
"url": {
"description": "The URL of the API definition.",
"type": "string"
}
}
},
"ApiManagementConfig": {
"description": "Azure API management (APIM) configuration linked to the app.",
"type": "object",
"properties": {
"id": {
"description": "APIM-Api Identifier.",
"type": "string"
}
}
},
"AppServiceEnvironment": {
"description": "Description of an App Service Environment.",
"required": [
"name",
"location",
"virtualNetwork",
"workerPools"
],
"type": "object",
"properties": {
"name": {
"description": "Name of the App Service Environment.",
"type": "string"
},
"location": {
"description": "Location of the App Service Environment, e.g. \"West US\".",
"type": "string"
},
"provisioningState": {
"description": "Provisioning state of the App Service Environment.",
"enum": [
"Succeeded",
"Failed",
"Canceled",
"InProgress",
"Deleting"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "ProvisioningState",
"modelAsString": false
}
},
"status": {
"description": "Current status of the App Service Environment.",
"enum": [
"Preparing",
"Ready",
"Scaling",
"Deleting"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "HostingEnvironmentStatus",
"modelAsString": false
}
},
"vnetName": {
"description": "Name of the Virtual Network for the App Service Environment.",
"type": "string"
},
"vnetResourceGroupName": {
"description": "Resource group of the Virtual Network.",
"type": "string"
},
"vnetSubnetName": {
"description": "Subnet of the Virtual Network.",
"type": "string"
},
"virtualNetwork": {
"$ref": "#/definitions/VirtualNetworkProfile",
"description": "Description of the Virtual Network."
},
"internalLoadBalancingMode": {
"description": "Specifies which endpoints to serve internally in the Virtual Network for the App Service Environment.",
"enum": [
"None",
"Web",
"Publishing"
],
"type": "string",
"x-ms-enum": {
"name": "InternalLoadBalancingMode",
"modelAsString": false
}
},
"multiSize": {
"description": "Front-end VM size, e.g. \"Medium\", \"Large\".",
"type": "string"
},
"multiRoleCount": {
"format": "int32",
"description": "Number of front-end instances.",
"type": "integer"
},
"workerPools": {
"description": "Description of worker pools with worker size IDs, VM sizes, and number of workers in each pool.",
"type": "array",
"items": {
"$ref": "#/definitions/WorkerPool"
}
},
"ipsslAddressCount": {
"format": "int32",
"description": "Number of IP SSL addresses reserved for the App Service Environment.",
"type": "integer"
},
"databaseEdition": {
"description": "Edition of the metadata database for the App Service Environment, e.g. \"Standard\".",
"type": "string",
"readOnly": true
},
"databaseServiceObjective": {
"description": "Service objective of the metadata database for the App Service Environment, e.g. \"S0\".",
"type": "string",
"readOnly": true
},
"upgradeDomains": {
"format": "int32",
"description": "Number of upgrade domains of the App Service Environment.",
"type": "integer",
"readOnly": true
},
"subscriptionId": {
"description": "Subscription of the App Service Environment.",
"type": "string",
"readOnly": true
},
"dnsSuffix": {
"description": "DNS suffix of the App Service Environment.",
"type": "string"
},
"lastAction": {
"description": "Last deployment action on the App Service Environment.",
"type": "string",
"readOnly": true
},
"lastActionResult": {
"description": "Result of the last deployment action on the App Service Environment.",
"type": "string",
"readOnly": true
},
"allowedMultiSizes": {
"description": "List of comma separated strings describing which VM sizes are allowed for front-ends.",
"type": "string",
"readOnly": true
},
"allowedWorkerSizes": {
"description": "List of comma separated strings describing which VM sizes are allowed for workers.",
"type": "string",
"readOnly": true
},
"maximumNumberOfMachines": {
"format": "int32",
"description": "Maximum number of VMs in the App Service Environment.",
"type": "integer",
"readOnly": true
},
"vipMappings": {
"description": "Description of IP SSL mapping for the App Service Environment.",
"type": "array",
"items": {
"$ref": "#/definitions/VirtualIPMapping"
},
"readOnly": true
},
"environmentCapacities": {
"description": "Current total, used, and available worker capacities.",
"type": "array",
"items": {
"$ref": "#/definitions/StampCapacity"
},
"readOnly": true
},
"networkAccessControlList": {
"description": "Access control list for controlling traffic to the App Service Environment.",
"type": "array",
"items": {
"$ref": "#/definitions/NetworkAccessControlEntry"
}
},
"environmentIsHealthy": {
"description": "True/false indicating whether the App Service Environment is healthy.",
"type": "boolean",
"readOnly": true
},
"environmentStatus": {
"description": "Detailed message about with results of the last check of the App Service Environment.",
"type": "string",
"readOnly": true
},
"resourceGroup": {
"description": "Resource group of the App Service Environment.",
"type": "string",
"readOnly": true
},
"frontEndScaleFactor": {
"format": "int32",
"description": "Scale factor for front-ends.",
"type": "integer"
},
"defaultFrontEndScaleFactor": {
"format": "int32",
"description": "Default Scale Factor for FrontEnds.",
"type": "integer",
"readOnly": true
},
"apiManagementAccountId": {
"description": "API Management Account associated with the App Service Environment.",
"type": "string"
},
"suspended": {
"description": "<code>true</code> if the App Service Environment is suspended; otherwise, <code>false</code>. The environment can be suspended, e.g. when the management endpoint is no longer available\n (most likely because NSG blocked the incoming traffic).",
"type": "boolean"
},
"dynamicCacheEnabled": {
"description": "True/false indicating whether the App Service Environment is suspended. The environment can be suspended e.g. when the management endpoint is no longer available\n(most likely because NSG blocked the incoming traffic).",
"type": "boolean"
},
"clusterSettings": {
"description": "Custom settings for changing the behavior of the App Service Environment.",
"type": "array",
"items": {
"$ref": "#/definitions/NameValuePair"
}
},
"userWhitelistedIpRanges": {
"description": "User added ip ranges to whitelist on ASE db",
"type": "array",
"items": {
"type": "string"
}
},
"hasLinuxWorkers": {
"description": "Flag that displays whether an ASE has linux workers or not",
"type": "boolean"
},
"sslCertKeyVaultId": {
"description": "Key Vault ID for ILB App Service Environment default SSL certificate",
"type": "string"
},
"sslCertKeyVaultSecretName": {
"description": "Key Vault Secret Name for ILB App Service Environment default SSL certificate",
"type": "string"
}
}
},
"AppServicePlan": {
"description": "App Service plan.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Resource"
}
],
"properties": {
"properties": {
"description": "AppServicePlan resource specific properties",
"properties": {
"workerTierName": {
"description": "Target worker tier assigned to the App Service plan.",
"type": "string"
},
"status": {
"description": "App Service plan status.",
"enum": [
"Ready",
"Pending",
"Creating"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "StatusOptions",
"modelAsString": false
}
},
"subscription": {
"description": "App Service plan subscription.",
"type": "string",
"readOnly": true
},
"hostingEnvironmentProfile": {
"$ref": "#/definitions/HostingEnvironmentProfile",
"description": "Specification for the App Service Environment to use for the App Service plan.",
"x-ms-mutability": [
"create",
"read"
]
},
"maximumNumberOfWorkers": {
"format": "int32",
"description": "Maximum number of instances that can be assigned to this App Service plan.",
"type": "integer",
"readOnly": true
},
"geoRegion": {
"description": "Geographical location for the App Service plan.",
"type": "string",
"readOnly": true
},
"perSiteScaling": {
"description": "If <code>true</code>, apps assigned to this App Service plan can be scaled independently.\nIf <code>false</code>, apps assigned to this App Service plan will scale to all instances of the plan.",
"default": false,
"type": "boolean"
},
"maximumElasticWorkerCount": {
"format": "int32",
"description": "Maximum number of total workers allowed for this ElasticScaleEnabled App Service Plan",
"type": "integer"
},
"numberOfSites": {
"format": "int32",
"description": "Number of apps assigned to this App Service plan.",
"type": "integer",
"readOnly": true
},
"isSpot": {
"description": "If <code>true</code>, this App Service Plan owns spot instances.",
"type": "boolean"
},
"spotExpirationTime": {
"format": "date-time",
"description": "The time when the server farm expires. Valid only if it is a spot server farm.",
"type": "string"
},
"freeOfferExpirationTime": {
"format": "date-time",
"description": "The time when the server farm free offer expires.",
"type": "string"
},
"resourceGroup": {
"description": "Resource group of the App Service plan.",
"type": "string",
"readOnly": true
},
"reserved": {
"description": "If Linux app service plan <code>true</code>, <code>false</code> otherwise.",
"default": false,
"type": "boolean",
"x-ms-mutability": [
"create",
"read"
]
},
"isXenon": {
"description": "Obsolete: If Hyper-V container app service plan <code>true</code>, <code>false</code> otherwise.",
"default": false,
"type": "boolean",
"x-ms-mutability": [
"create",
"read"
]
},
"hyperV": {
"description": "If Hyper-V container app service plan <code>true</code>, <code>false</code> otherwise.",
"default": false,
"type": "boolean",
"x-ms-mutability": [
"create",
"read"
]
},
"targetWorkerCount": {
"format": "int32",
"description": "Scaling worker count.",
"type": "integer"
},
"targetWorkerSizeId": {
"format": "int32",
"description": "Scaling worker size ID.",
"type": "integer"
},
"provisioningState": {
"description": "Provisioning state of the App Service Environment.",
"enum": [
"Succeeded",
"Failed",
"Canceled",
"InProgress",
"Deleting"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "ProvisioningState",
"modelAsString": false
}
}
},
"x-ms-client-flatten": true
},
"sku": {
"$ref": "#/definitions/SkuDescription"
}
}
},
"AppServicePlanCollection": {
"description": "Collection of App Service plans.",
"required": [
"value"
],
"type": "object",
"properties": {
"value": {
"description": "Collection of resources.",
"type": "array",
"items": {
"$ref": "#/definitions/AppServicePlan"
}
},
"nextLink": {
"description": "Link to next page of resources.",
"type": "string",
"readOnly": true
}
}
},
"AutoHealActions": {
"description": "Actions which to take by the auto-heal module when a rule is triggered.",
"type": "object",
"properties": {
"actionType": {
"description": "Predefined action to be taken.",
"enum": [
"Recycle",
"LogEvent",
"CustomAction"
],
"type": "string",
"x-ms-enum": {
"name": "AutoHealActionType",
"modelAsString": false
}
},
"customAction": {
"$ref": "#/definitions/AutoHealCustomAction",
"description": "Custom action to be taken."
},
"minProcessExecutionTime": {
"description": "Minimum time the process must execute\nbefore taking the action",
"type": "string"
}
}
},
"AutoHealCustomAction": {
"description": "Custom action to be executed\nwhen an auto heal rule is triggered.",
"type": "object",
"properties": {
"exe": {
"description": "Executable to be run.",
"type": "string"
},
"parameters": {
"description": "Parameters for the executable.",
"type": "string"
}
}
},
"AutoHealRules": {
"description": "Rules that can be defined for auto-heal.",
"type": "object",
"properties": {
"triggers": {
"$ref": "#/definitions/AutoHealTriggers",
"description": "Conditions that describe when to execute the auto-heal actions."
},
"actions": {
"$ref": "#/definitions/AutoHealActions",
"description": "Actions to be executed when a rule is triggered."
}
}
},
"AutoHealTriggers": {
"description": "Triggers for auto-heal.",
"type": "object",
"properties": {
"requests": {
"$ref": "#/definitions/RequestsBasedTrigger",
"description": "A rule based on total requests."
},
"privateBytesInKB": {
"format": "int32",
"description": "A rule based on private bytes.",
"type": "integer"
},
"statusCodes": {
"description": "A rule based on status codes.",
"type": "array",
"items": {
"$ref": "#/definitions/StatusCodesBasedTrigger"
}
},
"slowRequests": {
"$ref": "#/definitions/SlowRequestsBasedTrigger",
"description": "A rule based on request execution time."
}
}
},
"Capability": {
"description": "Describes the capabilities/features allowed for a specific SKU.",
"type": "object",
"properties": {
"name": {
"description": "Name of the SKU capability.",
"type": "string"
},
"value": {
"description": "Value of the SKU capability.",
"type": "string"
},
"reason": {
"description": "Reason of the SKU capability.",
"type": "string"
}
}
},
"CloningInfo": {
"description": "Information needed for cloning operation.",
"required": [
"sourceWebAppId"
],
"type": "object",
"properties": {
"correlationId": {
"format": "uuid",
"description": "Correlation ID of cloning operation. This ID ties multiple cloning operations\ntogether to use the same snapshot.",
"type": "string",
"example": "00000000-0000-0000-0000-000000000000"
},
"overwrite": {
"description": "<code>true</code> to overwrite destination app; otherwise, <code>false</code>.",
"type": "boolean"
},
"cloneCustomHostNames": {
"description": "<code>true</code> to clone custom hostnames from source app; otherwise, <code>false</code>.",
"type": "boolean"
},
"cloneSourceControl": {
"description": "<code>true</code> to clone source control from source app; otherwise, <code>false</code>.",
"type": "boolean"
},
"sourceWebAppId": {
"description": "ARM resource ID of the source app. App resource ID is of the form \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName} for production slots and \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{siteName}/slots/{slotName} for other slots.",
"type": "string"
},
"sourceWebAppLocation": {
"description": "Location of source app ex: West US or North Europe",
"type": "string"
},
"hostingEnvironment": {
"description": "App Service Environment.",
"type": "string"
},
"appSettingsOverrides": {
"description": "Application setting overrides for cloned app. If specified, these settings override the settings cloned \nfrom source app. Otherwise, application settings from source app are retained.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"configureLoadBalancing": {
"description": "<code>true</code> to configure load balancing for source and destination app.",
"type": "boolean"
},
"trafficManagerProfileId": {
"description": "ARM resource ID of the Traffic Manager profile to use, if it exists. Traffic Manager resource ID is of the form \n/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficManagerProfiles/{profileName}.",
"type": "string"
},
"trafficManagerProfileName": {
"description": "Name of Traffic Manager profile to create. This is only needed if Traffic Manager profile does not already exist.",
"type": "string"
}
}
},
"ConnStringInfo": {
"description": "Database connection string information.",
"type": "object",
"properties": {
"name": {
"description": "Name of connection string.",
"type": "string"
},
"connectionString": {
"description": "Connection string value.",
"type": "string"
},
"type": {
"description": "Type of database.",
"enum": [
"MySql",
"SQLServer",
"SQLAzure",
"Custom",
"NotificationHub",
"ServiceBus",
"EventHub",
"ApiHub",
"DocDb",
"RedisCache",
"PostgreSQL"
],
"type": "string",
"x-ms-enum": {
"name": "ConnectionStringType",
"modelAsString": false
}
}
}
},
"CorsSettings": {
"description": "Cross-Origin Resource Sharing (CORS) settings for the app.",
"type": "object",
"properties": {
"allowedOrigins": {
"description": "Gets or sets the list of origins that should be allowed to make cross-origin\ncalls (for example: http://example.com:12345). Use \"*\" to allow all.",
"type": "array",
"items": {
"type": "string"
}
},
"supportCredentials": {
"description": "Gets or sets whether CORS requests with credentials are allowed. See \nhttps://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Requests_with_credentials\nfor more details.",
"type": "boolean"
}
}
},
"CsmOperationCollection": {
"description": "Collection of Azure resource manager operation metadata.",
"required": [
"value"
],
"type": "object",
"properties": {
"value": {
"description": "Collection of resources.",
"type": "array",
"items": {
"$ref": "#/definitions/CsmOperationDescription"
}
},
"nextLink": {
"description": "Link to next page of resources.",
"type": "string",
"readOnly": true
}
}
},
"CsmOperationDescription": {
"description": "Description of an operation available for Microsoft.Web resource provider.",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"display": {
"$ref": "#/definitions/CsmOperationDisplay"
},
"origin": {
"type": "string"
},
"properties": {
"$ref": "#/definitions/CsmOperationDescriptionProperties"
}
}
},
"CsmOperationDescriptionProperties": {
"description": "Properties available for a Microsoft.Web resource provider operation.",
"type": "object",
"properties": {
"serviceSpecification": {
"$ref": "#/definitions/ServiceSpecification"
}
}
},
"CsmOperationDisplay": {
"description": "Meta data about operation used for display in portal.",
"type": "object",
"properties": {
"provider": {
"type": "string"
},
"resource": {
"type": "string"
},
"operation": {
"type": "string"
},
"description": {
"type": "string"
}
}
},
"CsmUsageQuota": {
"description": "Usage of the quota resource.",
"type": "object",
"properties": {
"unit": {
"description": "Units of measurement for the quota resource.",
"type": "string"
},
"nextResetTime": {
"format": "date-time",
"description": "Next reset time for the resource counter.",
"type": "string"
},
"currentValue": {
"format": "int64",
"description": "The current value of the resource counter.",
"type": "integer"
},
"limit": {
"format": "int64",
"description": "The resource limit.",
"type": "integer"
},
"name": {
"$ref": "#/definitions/LocalizableString",
"description": "Quota name."
}
}
},
"CsmUsageQuotaCollection": {
"description": "Collection of CSM usage quotas.",
"required": [
"value"
],
"type": "object",
"properties": {
"value": {
"description": "Collection of resources.",
"type": "array",
"items": {
"$ref": "#/definitions/CsmUsageQuota"
}
},
"nextLink": {
"description": "Link to next page of resources.",
"type": "string",
"readOnly": true
}
}
},
"DefaultErrorResponse": {
"description": "App Service error response.",
"type": "object",
"properties": {
"error": {
"description": "Error model.",
"type": "object",
"properties": {
"code": {
"description": "Standardized string to programmatically identify the error.",
"type": "string",
"readOnly": true
},
"message": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
},
"target": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
},
"details": {
"type": "array",
"items": {
"description": "Detailed errors.",
"properties": {
"code": {
"description": "Standardized string to programmatically identify the error.",
"type": "string",
"readOnly": true
},
"message": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
},
"target": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
}
},
"readOnly": true
}
},
"innererror": {
"description": "More information to debug error.",
"type": "string",
"readOnly": true
}
},
"readOnly": true
}
}
},
"DeletedSite": {
"description": "A deleted app.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/ProxyOnlyResource"
}
],
"properties": {
"properties": {
"description": "DeletedSite resource specific properties",
"properties": {
"deletedSiteId": {
"format": "int32",
"description": "Numeric id for the deleted site",
"type": "integer",
"readOnly": true
},
"deletedTimestamp": {
"description": "Time in UTC when the app was deleted.",
"type": "string",
"readOnly": true
},
"subscription": {
"description": "Subscription containing the deleted site",
"type": "string",
"readOnly": true
},
"resourceGroup": {
"description": "ResourceGroup that contained the deleted site",
"type": "string",
"readOnly": true
},
"deletedSiteName": {
"description": "Name of the deleted site",
"type": "string",
"readOnly": true
},
"slot": {
"description": "Slot of the deleted site",
"type": "string",
"readOnly": true
},
"kind": {
"description": "Kind of site that was deleted",
"type": "string",
"readOnly": true
},
"geoRegionName": {
"description": "Geo Region of the deleted site",
"type": "string",
"readOnly": true
}
},
"x-ms-client-flatten": true
}
}
},
"Dimension": {
"description": "Dimension of a resource metric. For e.g. instance specific HTTP requests for a web app, \nwhere instance name is dimension of the metric HTTP request",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"displayName": {
"type": "string"
},
"internalName": {
"type": "string"
},
"toBeExportedForShoebox": {
"type": "boolean"
}
}
},
"ErrorEntity": {
"description": "Body of the error response returned from the API.",
"type": "object",
"properties": {
"extendedCode": {
"description": "Type of error.",
"type": "string"
},
"messageTemplate": {
"description": "Message template.",
"type": "string"
},
"parameters": {
"description": "Parameters for the template.",
"type": "array",
"items": {
"type": "string"
}
},
"innerErrors": {
"description": "Inner errors.",
"type": "array",
"items": {
"$ref": "#/definitions/ErrorEntity"
}
},
"code": {
"description": "Basic error code.",
"type": "string"
},
"message": {
"description": "Any details of the error.",
"type": "string"
}
}
},
"Experiments": {
"description": "Routing rules in production experiments.",
"type": "object",
"properties": {
"rampUpRules": {
"description": "List of ramp-up rules.",
"type": "array",
"items": {
"$ref": "#/definitions/RampUpRule"
}
}
}
},
"HandlerMapping": {
"description": "The IIS handler mappings used to define which handler processes HTTP requests with certain extension. \nFor example, it is used to configure php-cgi.exe process to handle all HTTP requests with *.php extension.",
"type": "object",
"properties": {
"extension": {
"description": "Requests with this extension will be handled using the specified FastCGI application.",
"type": "string"
},
"scriptProcessor": {
"description": "The absolute path to the FastCGI application.",
"type": "string"
},
"arguments": {
"description": "Command-line arguments to be passed to the script processor.",
"type": "string"
}
}
},
"HostNameSslState": {
"description": "SSL-enabled hostname.",
"type": "object",
"properties": {
"name": {
"description": "Hostname.",
"type": "string"
},
"sslState": {
"description": "SSL type.",
"enum": [
"Disabled",
"SniEnabled",
"IpBasedEnabled"
],
"type": "string",
"x-ms-enum": {
"name": "SslState",
"modelAsString": false
}
},
"virtualIP": {
"description": "Virtual IP address assigned to the hostname if IP based SSL is enabled.",
"type": "string"
},
"thumbprint": {
"description": "SSL certificate thumbprint.",