-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy pathPersonalizer.json
1769 lines (1769 loc) · 55.5 KB
/
Personalizer.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": {
"title": "Personalizer Base",
"description": "Personalizer Service is an Azure Cognitive Service that makes it easy to target content and experiences without complex pre-analysis or cleanup of past data. Given a context and featurized content, the Personalizer Service returns which content item to show to users in rewardActionId. As rewards are sent in response to the use of rewardActionId, the reinforcement learning algorithm will improve the model and improve performance of future rank calls.",
"version": "v1.1-preview.1"
},
"basePath": "/personalizer/v1.1-preview.1",
"schemes": [
"https"
],
"paths": {
"/configurations/service": {
"put": {
"tags": [
"ConfigurationsV1Dot1Preview1"
],
"summary": "Update Service Configuration.",
"description": "Update the Personalizer service configuration.",
"operationId": "ServiceConfiguration_Update",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "config",
"description": "The personalizer service configuration.",
"required": true,
"schema": {
"$ref": "#/definitions/ServiceConfiguration"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/ServiceConfiguration"
}
},
"default": {
"description": "Updating defaultReward, rewardWaitTime and rewardAggregation when changing learning mode from Online to Apprentice mode and vice versa is not allowed. Make the mode change and then change the additional settings with an additional API call.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful ServiceConfiguration_Update request": {
"$ref": "./examples/ServiceConfiguration_Update.json"
}
}
},
"get": {
"tags": [
"ConfigurationsV1Dot1Preview1"
],
"summary": "Get Service Configuration.",
"description": "Get the Personalizer service configuration.",
"operationId": "ServiceConfiguration_Get",
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/ServiceConfiguration"
}
}
},
"x-ms-examples": {
"Successful ServiceConfiguration_Get request": {
"$ref": "./examples/ServiceConfiguration_Get.json"
}
}
}
},
"/configurations/policy": {
"get": {
"tags": [
"ConfigurationsV1Dot1Preview1"
],
"summary": "Get Policy.",
"description": "Get the Learning Settings currently used by the Personalizer service.",
"operationId": "Policy_Get",
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/PolicyContract"
}
}
},
"x-ms-examples": {
"Successful Policy_Get request": {
"$ref": "./examples/Policy_Get.json"
}
}
},
"put": {
"tags": [
"ConfigurationsV1Dot1Preview1"
],
"summary": "Update Policy.",
"description": "Update the Learning Settings that the Personalizer service will use to train models.",
"operationId": "Policy_Update",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "policy",
"description": "The learning settings.",
"required": true,
"schema": {
"$ref": "#/definitions/PolicyContract"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/PolicyContract"
}
},
"default": {
"description": "Invalid policy configuration.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful Policy_Update request": {
"$ref": "./examples/Policy_Update.json"
}
}
},
"delete": {
"tags": [
"ConfigurationsV1Dot1Preview1"
],
"summary": "Reset Policy.",
"description": "Resets the learning settings of the Personalizer service to default.",
"operationId": "Policy_Reset",
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/PolicyContract"
}
}
},
"x-ms-examples": {
"Successful Policy_Reset request": {
"$ref": "./examples/Policy_Reset.json"
}
}
}
},
"/configurations/applyFromEvaluation": {
"post": {
"tags": [
"ConfigurationsV1Dot1Preview1"
],
"summary": "Apply Learning Settings and model from a pre-existing Offline Evaluation, making them the current online Learning Settings and model and replacing the previous ones.",
"operationId": "ServiceConfiguration_ApplyFromEvaluation",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"required": true,
"schema": {
"$ref": "#/definitions/PolicyReferenceContract"
}
}
],
"responses": {
"204": {
"description": "Success"
},
"default": {
"description": "Learning Settings not found in evaluation.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful ServiceConfiguration_ApplyFromEvaluation request": {
"$ref": "./examples/ServiceConfiguration_ApplyFromEvaluation.json"
}
}
}
},
"/evaluations/{evaluationId}": {
"delete": {
"tags": [
"EvaluationsV1Dot1Preview1"
],
"summary": "Delete Evaluation.",
"description": "Delete the Offline Evaluation associated with the Id.",
"operationId": "Evaluations_Delete",
"parameters": [
{
"in": "path",
"name": "evaluationId",
"description": "Id of the Offline Evaluation to delete.",
"required": true,
"type": "string",
"maxLength": 256
}
],
"responses": {
"204": {
"description": "Success"
}
},
"x-ms-examples": {
"Successful Evaluations_Delete request": {
"$ref": "./examples/Evaluations_Delete.json"
}
}
},
"get": {
"tags": [
"EvaluationsV1Dot1Preview1"
],
"summary": "Get Evaluation.",
"description": "Get the Offline Evaluation associated with the Id.",
"operationId": "Evaluations_Get",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "evaluationId",
"description": "Id of the Offline Evaluation.",
"required": true,
"type": "string",
"maxLength": 256
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/Evaluation"
}
},
"default": {
"description": "Offline Evaluation not found.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful Evaluations_Get request": {
"$ref": "./examples/Evaluations_Get.json"
}
}
}
},
"/evaluations": {
"get": {
"tags": [
"EvaluationsV1Dot1Preview1"
],
"summary": "List Offline Evaluations.",
"description": "List of all Offline Evaluations.",
"operationId": "Evaluations_List",
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Success",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/Evaluation"
}
}
}
},
"x-ms-examples": {
"Successful Evaluations_List request": {
"$ref": "./examples/Evaluations_List.json"
}
}
},
"post": {
"tags": [
"EvaluationsV1Dot1Preview1"
],
"summary": "Create Offline Evaluation.",
"description": "Submit a new Offline Evaluation job.",
"operationId": "Evaluations_Create",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "evaluation",
"description": "The Offline Evaluation job definition.",
"required": true,
"schema": {
"$ref": "#/definitions/EvaluationContract"
}
}
],
"responses": {
"201": {
"description": "Success",
"schema": {
"$ref": "#/definitions/Evaluation"
},
"headers": {
"Location": {
"description": "Location of the Offline Evaluation status and data.",
"type": "string"
}
}
},
"default": {
"description": "Invalid evaluation contract.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful Evaluations_Create request": {
"$ref": "./examples/Evaluations_Create.json"
}
}
}
},
"/events/{eventId}/reward": {
"post": {
"tags": [
"Events"
],
"summary": "Post Reward.",
"description": "Report reward between 0 and 1 that resulted from using the action specified in rewardActionId, for the specified event.",
"operationId": "Events_Reward",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "eventId",
"description": "The event id this reward applies to.",
"required": true,
"type": "string",
"maxLength": 256
},
{
"in": "body",
"name": "reward",
"description": "The reward should be a floating point number, typically between 0 and 1.",
"required": true,
"schema": {
"$ref": "#/definitions/RewardRequest"
}
}
],
"responses": {
"204": {
"description": "Success"
},
"default": {
"description": "Invalid reward request.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful Events_Reward request": {
"$ref": "./examples/Events_Reward.json"
}
}
}
},
"/events/{eventId}/activate": {
"post": {
"tags": [
"Events"
],
"summary": "Activate Event.",
"description": "Report that the specified event was actually used (e.g. by being displayed to the user) and a reward should be expected for it.",
"operationId": "Events_Activate",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "eventId",
"description": "The event ID to be activated.",
"required": true,
"type": "string",
"maxLength": 256
}
],
"responses": {
"204": {
"description": "Success"
},
"default": {
"description": "Invalid activate event request.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful Events_Activate request": {
"$ref": "./examples/Events_Activate.json"
}
}
}
},
"/logs": {
"delete": {
"tags": [
"Logs"
],
"summary": "Deletes Logs.",
"description": "Delete all logs of Rank and Reward calls stored by Personalizer.",
"operationId": "Log_Delete",
"responses": {
"204": {
"description": "Success"
}
},
"x-ms-examples": {
"Successful Log_Delete request": {
"$ref": "./examples/Log_Delete.json"
}
}
}
},
"/logs/properties": {
"get": {
"tags": [
"Logs"
],
"summary": "Get Log Properties.",
"description": "Get properties of the Personalizer logs.",
"operationId": "Log_GetProperties",
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/LogsProperties"
}
},
"default": {
"description": "Log properties not found.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful Log_GetProperties request": {
"$ref": "./examples/Log_GetProperties.json"
}
}
}
},
"/model": {
"get": {
"tags": [
"Model"
],
"summary": "Get Model.",
"description": "Get the model file generated by Personalizer service.",
"operationId": "Model_Get",
"produces": [
"application/octet-stream"
],
"responses": {
"200": {
"description": "Success",
"schema": {
"type": "file"
}
}
},
"x-ms-examples": {
"Successful Model_Get request": {
"$ref": "./examples/Model_Get.json"
}
}
},
"delete": {
"tags": [
"Model"
],
"summary": "Reset Model.",
"description": "Resets the model file generated by Personalizer service.",
"operationId": "Model_Reset",
"produces": [
"application/json"
],
"responses": {
"204": {
"description": "Success"
},
"default": {
"description": "Model reset failed.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful Model_Reset request": {
"$ref": "./examples/Model_Reset.json"
}
}
}
},
"/model/properties": {
"get": {
"tags": [
"Model"
],
"summary": "Get Model Properties.",
"description": "Get properties of the model file generated by Personalizer service.",
"operationId": "Model_GetProperties",
"produces": [
"application/json"
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/ModelProperties"
}
}
},
"x-ms-examples": {
"Successful Model_GetProperties request": {
"$ref": "./examples/Model_GetProperties.json"
}
}
}
},
"/multislot/events/{eventId}/reward": {
"post": {
"tags": [
"MultiSlotEvents"
],
"summary": "Post multi-slot Rewards.",
"description": "Report reward that resulted from using the action specified in rewardActionId for the slot.",
"operationId": "MultiSlotEvents_Reward",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "eventId",
"description": "The event id this reward applies to.",
"required": true,
"type": "string",
"maxLength": 256
},
{
"in": "body",
"name": "body",
"description": "List of slot id and reward values. The reward should be a floating point number, typically between 0 and 1.",
"required": true,
"schema": {
"$ref": "#/definitions/MultiSlotRewardRequest"
}
}
],
"responses": {
"204": {
"description": "Success"
},
"default": {
"description": "Invalid reward request.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful MultiSlotEvents_Reward request": {
"$ref": "./examples/MultiSlotEvents_Reward.json"
}
}
}
},
"/multislot/events/{eventId}/activate": {
"post": {
"tags": [
"MultiSlotEvents"
],
"summary": "Activate multi-slot Event.",
"description": "Report that the specified event was actually used or displayed to the user and a rewards should be expected for it.",
"operationId": "MultiSlotEvents_Activate",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "eventId",
"description": "The event ID this activation applies to.",
"required": true,
"type": "string",
"maxLength": 256
}
],
"responses": {
"204": {
"description": "Success"
},
"default": {
"description": "Invalid activate event request.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful MultiSlotEvents_Activate request": {
"$ref": "./examples/MultiSlotEvents_Activate.json"
}
}
}
},
"/multislot/rank": {
"post": {
"tags": [
"MultiSlotRank"
],
"summary": "Post multi-slot Rank.",
"description": "Submit a Personalizer multi-slot rank request. Receives a context, a list of actions, and a list of slots. Returns which of the provided actions should be used in each slot, in each rewardActionId.",
"operationId": "MultiSlot_Rank",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "body",
"description": "A Personalizer multi-slot Rank request.",
"required": true,
"schema": {
"$ref": "#/definitions/MultiSlotRankRequest"
}
}
],
"responses": {
"201": {
"description": "Success",
"schema": {
"$ref": "#/definitions/MultiSlotRankResponse"
}
},
"default": {
"description": "Invalid request.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful MultiSlot_Rank request": {
"$ref": "./examples/MultiSlot_Rank.json"
}
}
}
},
"/rank": {
"post": {
"tags": [
"Rank"
],
"summary": "Post Rank.",
"description": "Submit a Personalizer rank request. Receives a context and a list of actions. Returns which of the provided actions should be used by your application, in rewardActionId.",
"operationId": "Rank",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "rankRequest",
"description": "A Personalizer Rank request.",
"required": true,
"schema": {
"$ref": "#/definitions/RankRequest"
}
}
],
"responses": {
"201": {
"description": "Success",
"schema": {
"$ref": "#/definitions/RankResponse"
}
},
"default": {
"description": "Invalid request.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Successful Rank request": {
"$ref": "./examples/Rank.json"
}
}
}
}
},
"definitions": {
"ServiceConfiguration": {
"description": "The configuration of the service.",
"required": [
"defaultReward",
"explorationPercentage",
"logRetentionDays",
"modelExportFrequency",
"rewardAggregation",
"rewardWaitTime"
],
"type": "object",
"properties": {
"rewardWaitTime": {
"format": "duration",
"description": "The time span waited until a request is marked with the default reward\r\nand should be between 5 seconds and 2 days.\r\nFor example, PT5M (5 mins). For information about the time format,\r\nsee http://en.wikipedia.org/wiki/ISO_8601#Durations",
"type": "string"
},
"defaultReward": {
"format": "float",
"description": "The reward given if a reward is not received within the specified wait time.",
"maximum": 1,
"minimum": -1,
"type": "number"
},
"rewardAggregation": {
"description": "The function used to process rewards, if multiple reward scores are received before rewardWaitTime is over.",
"maxLength": 256,
"type": "string"
},
"explorationPercentage": {
"format": "float",
"description": "The percentage of rank responses that will use exploration.",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"modelExportFrequency": {
"format": "duration",
"description": "Personalizer will start using the most updated trained model for online ranks automatically every specified time period.\r\nFor example, PT5M (5 mins). For information about the time format,\r\nsee http://en.wikipedia.org/wiki/ISO_8601#Durations",
"type": "string"
},
"logMirrorEnabled": {
"description": "Flag indicates whether log mirroring is enabled.",
"type": "boolean"
},
"logMirrorSasUri": {
"description": "Azure storage account container SAS URI for log mirroring.",
"type": "string"
},
"logRetentionDays": {
"format": "int32",
"description": "Number of days historical logs are to be maintained. -1 implies the logs will never be deleted.",
"maximum": 2147483647,
"minimum": -1,
"type": "integer"
},
"lastConfigurationEditDate": {
"format": "date-time",
"description": "Last time model training configuration was updated",
"type": "string"
},
"learningMode": {
"description": "Learning Modes for Personalizer",
"enum": [
"Online",
"Apprentice",
"LoggingOnly"
],
"type": "string",
"x-ms-enum": {
"name": "LearningMode",
"modelAsString": true
}
},
"isAutoOptimizationEnabled": {
"description": "Flag indicating whether Personalizer will automatically optimize Learning Settings by running Offline Evaluations periodically.",
"type": "boolean"
},
"autoOptimizationFrequency": {
"format": "duration",
"description": "Frequency of automatic optimization. Only relevant if IsAutoOptimizationEnabled is true.\r\nFor example, PT5M (5 mins). For information about the time format,\r\n\\r\\nsee http://en.wikipedia.org/wiki/ISO_8601#Durations",
"type": "string"
},
"autoOptimizationStartDate": {
"format": "date-time",
"description": "Date when the first automatic optimization evaluation must be performed. Only relevant if IsAutoOptimizationEnabled is true.",
"type": "string"
}
}
},
"InternalError": {
"description": "An object containing more specific information than the parent object about the error.",
"type": "object",
"properties": {
"code": {
"description": "Detailed error code.",
"type": "string"
},
"innererror": {
"$ref": "#/definitions/InternalError"
}
}
},
"PersonalizerError": {
"description": "The error object.",
"required": [
"code",
"message"
],
"type": "object",
"properties": {
"code": {
"description": "Error Codes returned by Personalizer",
"enum": [
"BadRequest",
"InvalidServiceConfiguration",
"InvalidLearningModeServiceConfiguration",
"InvalidPolicyConfiguration",
"InvalidPolicyContract",
"InvalidEvaluationContract",
"DuplicateCustomPolicyNames",
"NoLogsExistInDateRange",
"LogsSizeExceedAllowedLimit",
"InvalidRewardRequest",
"InvalidEventIdToActivate",
"InvalidRankRequest",
"InvalidExportLogsRequest",
"InvalidContainer",
"InvalidModelMetadata",
"ApprenticeModeNeverTurnedOn",
"MissingAppId",
"InvalidRewardWaitTime",
"InvalidMultiSlotApiAccess",
"ModelFileAccessDenied",
"ProblemTypeIncompatibleWithAutoOptimization",
"ResourceNotFound",
"FrontEndNotFound",
"EvaluationNotFound",
"LearningSettingsNotFound",
"EvaluationModelNotFound",
"LogsPropertiesNotFound",
"ModelRankingError",
"InternalServerError",
"RankNullResponse",
"UpdateConfigurationFailed",
"ModelResetFailed",
"ModelPublishFailed",
"ModelMetadataUpdateFailed",
"OperationNotAllowed"
],
"type": "string",
"x-ms-enum": {
"name": "PersonalizerErrorCode",
"modelAsString": true,
"values": [
{
"value": "BadRequest",
"description": "Request could not be understood by the server."
},
{
"value": "InvalidServiceConfiguration",
"description": "Invalid service configuration."
},
{
"value": "InvalidLearningModeServiceConfiguration",
"description": "Updating defaultReward, rewardWaitTime and rewardAggregation when changing learning mode from Online to Apprentice mode and vice versa is not allowed. Make the mode change and then change the additional settings with an additional API call."
},
{
"value": "InvalidPolicyConfiguration",
"description": "Invalid policy configuration."
},
{
"value": "InvalidPolicyContract",
"description": "Invalid policy contract."
},
{
"value": "InvalidEvaluationContract",
"description": "Invalid evaluation contract."
},
{
"value": "DuplicateCustomPolicyNames",
"description": "Custom policy names should be unique."
},
{
"value": "NoLogsExistInDateRange",
"description": "No logs exist in date range."
},
{
"value": "LogsSizeExceedAllowedLimit",
"description": "Total size of logs exceed allowed limit."
},
{
"value": "InvalidRewardRequest",
"description": "Invalid reward request."
},
{
"value": "InvalidEventIdToActivate",
"description": "Invalid activate event request."
},
{
"value": "InvalidRankRequest",
"description": "Invalid request."
},
{
"value": "InvalidExportLogsRequest",
"description": "Invalid request."
},
{
"value": "InvalidContainer",
"description": "SAS Uri must be the Uri to a container that has write permissions."
},
{
"value": "InvalidModelMetadata",
"description": "Invalid model metadata."
},
{
"value": "ApprenticeModeNeverTurnedOn",
"description": "Apprentice mode never turned on."
},
{
"value": "MissingAppId",
"description": "AppId is missing in the header."
},
{
"value": "InvalidRewardWaitTime",
"description": "Reward wait time should be between 5 seconds and 2 days"
},
{
"value": "InvalidMultiSlotApiAccess",