-
Notifications
You must be signed in to change notification settings - Fork 207
/
Copy pathDiscoveryService.cs
5793 lines (5019 loc) · 269 KB
/
DiscoveryService.cs
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
/**
* (C) Copyright IBM Corp. 2019, 2022.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
/**
* IBM OpenAPI SDK Code Generator Version: 3.46.0-a4e29da0-20220224-210428
*/
using System.Collections.Generic;
using System.Text;
using IBM.Cloud.SDK;
using IBM.Cloud.SDK.Authentication;
using IBM.Cloud.SDK.Connection;
using IBM.Cloud.SDK.Utilities;
using IBM.Watson.Discovery.V1.Model;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using UnityEngine.Networking;
namespace IBM.Watson.Discovery.V1
{
public partial class DiscoveryService : BaseService
{
private const string defaultServiceName = "discovery";
private const string defaultServiceUrl = "https://api.us-south.discovery.watson.cloud.ibm.com";
#region Version
private string version;
/// <summary>
/// Gets and sets the version of the service.
/// Release date of the version of the API you want to use. Specify dates in YYYY-MM-DD format. The current
/// version is `2019-04-30`.
/// </summary>
public string Version
{
get { return version; }
set { version = value; }
}
#endregion
#region DisableSslVerification
private bool disableSslVerification = false;
/// <summary>
/// Gets and sets the option to disable ssl verification
/// </summary>
public bool DisableSslVerification
{
get { return disableSslVerification; }
set { disableSslVerification = value; }
}
#endregion
/// <summary>
/// DiscoveryService constructor.
/// </summary>
/// <param name="version">Release date of the version of the API you want to use. Specify dates in YYYY-MM-DD
/// format. The current version is `2019-04-30`.</param>
public DiscoveryService(string version) : this(version, defaultServiceName, ConfigBasedAuthenticatorFactory.GetAuthenticator(defaultServiceName)) {}
/// <summary>
/// DiscoveryService constructor.
/// </summary>
/// <param name="version">Release date of the version of the API you want to use. Specify dates in YYYY-MM-DD
/// format. The current version is `2019-04-30`.</param>
/// <param name="authenticator">The service authenticator.</param>
public DiscoveryService(string version, Authenticator authenticator) : this(version, defaultServiceName, authenticator) {}
/// <summary>
/// DiscoveryService constructor.
/// </summary>
/// <param name="version">Release date of the version of the API you want to use. Specify dates in YYYY-MM-DD
/// format. The current version is `2019-04-30`.</param>
/// <param name="serviceName">The service name to be used when configuring the client instance</param>
public DiscoveryService(string version, string serviceName) : this(version, serviceName, ConfigBasedAuthenticatorFactory.GetAuthenticator(serviceName)) {}
/// <summary>
/// DiscoveryService constructor.
/// </summary>
/// <param name="version">Release date of the version of the API you want to use. Specify dates in YYYY-MM-DD
/// format. The current version is `2019-04-30`.</param>
/// <param name="serviceName">The service name to be used when configuring the client instance</param>
/// <param name="authenticator">The service authenticator.</param>
public DiscoveryService(string version, string serviceName, Authenticator authenticator) : base(authenticator, serviceName)
{
Authenticator = authenticator;
if (string.IsNullOrEmpty(version))
{
throw new ArgumentNullException("`version` is required");
}
else
{
Version = version;
}
if (string.IsNullOrEmpty(GetServiceUrl()))
{
SetServiceUrl(defaultServiceUrl);
}
}
/// <summary>
/// Create an environment.
///
/// Creates a new environment for private data. An environment must be created before collections can be
/// created.
///
/// **Note**: You can create only one environment for private data per service instance. An attempt to create
/// another environment results in an error.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="name">Name that identifies the environment.</param>
/// <param name="description">Description of the environment. (optional, default to )</param>
/// <param name="size">Size of the environment. In the Lite plan the default and only accepted value is `LT`, in
/// all other plans the default is `S`. (optional)</param>
/// <returns><see cref="ModelEnvironment" />ModelEnvironment</returns>
public bool CreateEnvironment(Callback<ModelEnvironment> callback, string name, string description = null, string size = null)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `CreateEnvironment`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(name))
throw new ArgumentNullException("`name` is required for `CreateEnvironment`");
RequestObject<ModelEnvironment> req = new RequestObject<ModelEnvironment>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbPOST,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "CreateEnvironment"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
req.Headers["Content-Type"] = "application/json";
req.Headers["Accept"] = "application/json";
JObject bodyObject = new JObject();
if (!string.IsNullOrEmpty(name))
bodyObject["name"] = name;
if (!string.IsNullOrEmpty(description))
bodyObject["description"] = description;
if (!string.IsNullOrEmpty(size))
bodyObject["size"] = size;
req.Send = Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(bodyObject));
req.OnResponse = OnCreateEnvironmentResponse;
Connector.URL = GetServiceUrl() + "/v1/environments";
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnCreateEnvironmentResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<ModelEnvironment> response = new DetailedResponse<ModelEnvironment>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<ModelEnvironment>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnCreateEnvironmentResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<ModelEnvironment>)req).Callback != null)
((RequestObject<ModelEnvironment>)req).Callback(response, resp.Error);
}
/// <summary>
/// List environments.
///
/// List existing environments for the service instance.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="name">Show only the environment with the given name. (optional)</param>
/// <returns><see cref="ListEnvironmentsResponse" />ListEnvironmentsResponse</returns>
public bool ListEnvironments(Callback<ListEnvironmentsResponse> callback, string name = null)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `ListEnvironments`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
RequestObject<ListEnvironmentsResponse> req = new RequestObject<ListEnvironmentsResponse>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbGET,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "ListEnvironments"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
if (!string.IsNullOrEmpty(name))
{
req.Parameters["name"] = name;
}
req.OnResponse = OnListEnvironmentsResponse;
Connector.URL = GetServiceUrl() + "/v1/environments";
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnListEnvironmentsResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<ListEnvironmentsResponse> response = new DetailedResponse<ListEnvironmentsResponse>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<ListEnvironmentsResponse>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnListEnvironmentsResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<ListEnvironmentsResponse>)req).Callback != null)
((RequestObject<ListEnvironmentsResponse>)req).Callback(response, resp.Error);
}
/// <summary>
/// Get environment info.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="environmentId">The ID of the environment.</param>
/// <returns><see cref="ModelEnvironment" />ModelEnvironment</returns>
public bool GetEnvironment(Callback<ModelEnvironment> callback, string environmentId)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `GetEnvironment`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(environmentId))
throw new ArgumentNullException("`environmentId` is required for `GetEnvironment`");
RequestObject<ModelEnvironment> req = new RequestObject<ModelEnvironment>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbGET,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "GetEnvironment"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
req.OnResponse = OnGetEnvironmentResponse;
Connector.URL = GetServiceUrl() + string.Format("/v1/environments/{0}", environmentId);
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnGetEnvironmentResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<ModelEnvironment> response = new DetailedResponse<ModelEnvironment>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<ModelEnvironment>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnGetEnvironmentResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<ModelEnvironment>)req).Callback != null)
((RequestObject<ModelEnvironment>)req).Callback(response, resp.Error);
}
/// <summary>
/// Update an environment.
///
/// Updates an environment. The environment's **name** and **description** parameters can be changed. You must
/// specify a **name** for the environment.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="environmentId">The ID of the environment.</param>
/// <param name="name">Name that identifies the environment. (optional, default to )</param>
/// <param name="description">Description of the environment. (optional, default to )</param>
/// <param name="size">Size to change the environment to. **Note:** Lite plan users cannot change the
/// environment size. (optional)</param>
/// <returns><see cref="ModelEnvironment" />ModelEnvironment</returns>
public bool UpdateEnvironment(Callback<ModelEnvironment> callback, string environmentId, string name = null, string description = null, string size = null)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `UpdateEnvironment`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(environmentId))
throw new ArgumentNullException("`environmentId` is required for `UpdateEnvironment`");
RequestObject<ModelEnvironment> req = new RequestObject<ModelEnvironment>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbPUT,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "UpdateEnvironment"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
req.Headers["Content-Type"] = "application/json";
req.Headers["Accept"] = "application/json";
JObject bodyObject = new JObject();
if (!string.IsNullOrEmpty(name))
bodyObject["name"] = name;
if (!string.IsNullOrEmpty(description))
bodyObject["description"] = description;
if (!string.IsNullOrEmpty(size))
bodyObject["size"] = size;
req.Send = Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(bodyObject));
req.OnResponse = OnUpdateEnvironmentResponse;
Connector.URL = GetServiceUrl() + string.Format("/v1/environments/{0}", environmentId);
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnUpdateEnvironmentResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<ModelEnvironment> response = new DetailedResponse<ModelEnvironment>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<ModelEnvironment>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnUpdateEnvironmentResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<ModelEnvironment>)req).Callback != null)
((RequestObject<ModelEnvironment>)req).Callback(response, resp.Error);
}
/// <summary>
/// Delete environment.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="environmentId">The ID of the environment.</param>
/// <returns><see cref="DeleteEnvironmentResponse" />DeleteEnvironmentResponse</returns>
public bool DeleteEnvironment(Callback<DeleteEnvironmentResponse> callback, string environmentId)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `DeleteEnvironment`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(environmentId))
throw new ArgumentNullException("`environmentId` is required for `DeleteEnvironment`");
RequestObject<DeleteEnvironmentResponse> req = new RequestObject<DeleteEnvironmentResponse>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbDELETE,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "DeleteEnvironment"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
req.OnResponse = OnDeleteEnvironmentResponse;
Connector.URL = GetServiceUrl() + string.Format("/v1/environments/{0}", environmentId);
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnDeleteEnvironmentResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<DeleteEnvironmentResponse> response = new DetailedResponse<DeleteEnvironmentResponse>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<DeleteEnvironmentResponse>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnDeleteEnvironmentResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<DeleteEnvironmentResponse>)req).Callback != null)
((RequestObject<DeleteEnvironmentResponse>)req).Callback(response, resp.Error);
}
/// <summary>
/// List fields across collections.
///
/// Gets a list of the unique fields (and their types) stored in the indexes of the specified collections.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="environmentId">The ID of the environment.</param>
/// <param name="collectionIds">A comma-separated list of collection IDs to be queried against.</param>
/// <returns><see cref="ListCollectionFieldsResponse" />ListCollectionFieldsResponse</returns>
public bool ListFields(Callback<ListCollectionFieldsResponse> callback, string environmentId, List<string> collectionIds)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `ListFields`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(environmentId))
throw new ArgumentNullException("`environmentId` is required for `ListFields`");
if (collectionIds == null)
throw new ArgumentNullException("`collectionIds` is required for `ListFields`");
RequestObject<ListCollectionFieldsResponse> req = new RequestObject<ListCollectionFieldsResponse>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbGET,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "ListFields"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
if (collectionIds != null && collectionIds.Count > 0)
{
req.Parameters["collection_ids"] = string.Join(",", collectionIds.ToArray());
}
req.OnResponse = OnListFieldsResponse;
Connector.URL = GetServiceUrl() + string.Format("/v1/environments/{0}/fields", environmentId);
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnListFieldsResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<ListCollectionFieldsResponse> response = new DetailedResponse<ListCollectionFieldsResponse>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<ListCollectionFieldsResponse>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnListFieldsResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<ListCollectionFieldsResponse>)req).Callback != null)
((RequestObject<ListCollectionFieldsResponse>)req).Callback(response, resp.Error);
}
/// <summary>
/// Add configuration.
///
/// Creates a new configuration.
///
/// If the input configuration contains the **configuration_id**, **created**, or **updated** properties, then
/// they are ignored and overridden by the system, and an error is not returned so that the overridden fields do
/// not need to be removed when copying a configuration.
///
/// The configuration can contain unrecognized JSON fields. Any such fields are ignored and do not generate an
/// error. This makes it easier to use newer configuration files with older versions of the API and the service.
/// It also makes it possible for the tooling to add additional metadata and information to the configuration.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="environmentId">The ID of the environment.</param>
/// <param name="name">The name of the configuration.</param>
/// <param name="description">The description of the configuration, if available. (optional)</param>
/// <param name="conversions">Document conversion settings. (optional)</param>
/// <param name="enrichments">An array of document enrichment settings for the configuration. (optional)</param>
/// <param name="normalizations">Defines operations that can be used to transform the final output JSON into a
/// normalized form. Operations are executed in the order that they appear in the array. (optional)</param>
/// <param name="source">Object containing source parameters for the configuration. (optional)</param>
/// <returns><see cref="Configuration" />Configuration</returns>
public bool CreateConfiguration(Callback<Configuration> callback, string environmentId, string name, string description = null, Conversions conversions = null, List<Enrichment> enrichments = null, List<NormalizationOperation> normalizations = null, Source source = null)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `CreateConfiguration`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(environmentId))
throw new ArgumentNullException("`environmentId` is required for `CreateConfiguration`");
if (string.IsNullOrEmpty(name))
throw new ArgumentNullException("`name` is required for `CreateConfiguration`");
RequestObject<Configuration> req = new RequestObject<Configuration>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbPOST,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "CreateConfiguration"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
req.Headers["Content-Type"] = "application/json";
req.Headers["Accept"] = "application/json";
JObject bodyObject = new JObject();
if (!string.IsNullOrEmpty(name))
bodyObject["name"] = name;
if (!string.IsNullOrEmpty(description))
bodyObject["description"] = description;
if (conversions != null)
bodyObject["conversions"] = JToken.FromObject(conversions);
if (enrichments != null && enrichments.Count > 0)
bodyObject["enrichments"] = JToken.FromObject(enrichments);
if (normalizations != null && normalizations.Count > 0)
bodyObject["normalizations"] = JToken.FromObject(normalizations);
if (source != null)
bodyObject["source"] = JToken.FromObject(source);
req.Send = Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(bodyObject));
req.OnResponse = OnCreateConfigurationResponse;
Connector.URL = GetServiceUrl() + string.Format("/v1/environments/{0}/configurations", environmentId);
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnCreateConfigurationResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<Configuration> response = new DetailedResponse<Configuration>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<Configuration>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnCreateConfigurationResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<Configuration>)req).Callback != null)
((RequestObject<Configuration>)req).Callback(response, resp.Error);
}
/// <summary>
/// List configurations.
///
/// Lists existing configurations for the service instance.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="environmentId">The ID of the environment.</param>
/// <param name="name">Find configurations with the given name. (optional)</param>
/// <returns><see cref="ListConfigurationsResponse" />ListConfigurationsResponse</returns>
public bool ListConfigurations(Callback<ListConfigurationsResponse> callback, string environmentId, string name = null)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `ListConfigurations`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(environmentId))
throw new ArgumentNullException("`environmentId` is required for `ListConfigurations`");
RequestObject<ListConfigurationsResponse> req = new RequestObject<ListConfigurationsResponse>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbGET,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "ListConfigurations"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
if (!string.IsNullOrEmpty(name))
{
req.Parameters["name"] = name;
}
req.OnResponse = OnListConfigurationsResponse;
Connector.URL = GetServiceUrl() + string.Format("/v1/environments/{0}/configurations", environmentId);
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnListConfigurationsResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<ListConfigurationsResponse> response = new DetailedResponse<ListConfigurationsResponse>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<ListConfigurationsResponse>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnListConfigurationsResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<ListConfigurationsResponse>)req).Callback != null)
((RequestObject<ListConfigurationsResponse>)req).Callback(response, resp.Error);
}
/// <summary>
/// Get configuration details.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="environmentId">The ID of the environment.</param>
/// <param name="configurationId">The ID of the configuration.</param>
/// <returns><see cref="Configuration" />Configuration</returns>
public bool GetConfiguration(Callback<Configuration> callback, string environmentId, string configurationId)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `GetConfiguration`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(environmentId))
throw new ArgumentNullException("`environmentId` is required for `GetConfiguration`");
if (string.IsNullOrEmpty(configurationId))
throw new ArgumentNullException("`configurationId` is required for `GetConfiguration`");
RequestObject<Configuration> req = new RequestObject<Configuration>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbGET,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "GetConfiguration"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
req.OnResponse = OnGetConfigurationResponse;
Connector.URL = GetServiceUrl() + string.Format("/v1/environments/{0}/configurations/{1}", environmentId, configurationId);
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnGetConfigurationResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<Configuration> response = new DetailedResponse<Configuration>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<Configuration>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnGetConfigurationResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<Configuration>)req).Callback != null)
((RequestObject<Configuration>)req).Callback(response, resp.Error);
}
/// <summary>
/// Update a configuration.
///
/// Replaces an existing configuration.
/// * Completely replaces the original configuration.
/// * The **configuration_id**, **updated**, and **created** fields are accepted in the request, but they are
/// ignored, and an error is not generated. It is also acceptable for users to submit an updated configuration
/// with none of the three properties.
/// * Documents are processed with a snapshot of the configuration as it was at the time the document was
/// submitted to be ingested. This means that already submitted documents will not see any updates made to the
/// configuration.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="environmentId">The ID of the environment.</param>
/// <param name="configurationId">The ID of the configuration.</param>
/// <param name="name">The name of the configuration.</param>
/// <param name="description">The description of the configuration, if available. (optional)</param>
/// <param name="conversions">Document conversion settings. (optional)</param>
/// <param name="enrichments">An array of document enrichment settings for the configuration. (optional)</param>
/// <param name="normalizations">Defines operations that can be used to transform the final output JSON into a
/// normalized form. Operations are executed in the order that they appear in the array. (optional)</param>
/// <param name="source">Object containing source parameters for the configuration. (optional)</param>
/// <returns><see cref="Configuration" />Configuration</returns>
public bool UpdateConfiguration(Callback<Configuration> callback, string environmentId, string configurationId, string name, string description = null, Conversions conversions = null, List<Enrichment> enrichments = null, List<NormalizationOperation> normalizations = null, Source source = null)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `UpdateConfiguration`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(environmentId))
throw new ArgumentNullException("`environmentId` is required for `UpdateConfiguration`");
if (string.IsNullOrEmpty(configurationId))
throw new ArgumentNullException("`configurationId` is required for `UpdateConfiguration`");
if (string.IsNullOrEmpty(name))
throw new ArgumentNullException("`name` is required for `UpdateConfiguration`");
RequestObject<Configuration> req = new RequestObject<Configuration>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbPUT,
DisableSslVerification = DisableSslVerification
};
foreach (KeyValuePair<string, string> kvp in customRequestHeaders)
{
req.Headers.Add(kvp.Key, kvp.Value);
}
ClearCustomRequestHeaders();
foreach (KeyValuePair<string, string> kvp in Common.GetSdkHeaders("discovery", "V1", "UpdateConfiguration"))
{
req.Headers.Add(kvp.Key, kvp.Value);
}
if (!string.IsNullOrEmpty(Version))
{
req.Parameters["version"] = Version;
}
req.Headers["Content-Type"] = "application/json";
req.Headers["Accept"] = "application/json";
JObject bodyObject = new JObject();
if (!string.IsNullOrEmpty(name))
bodyObject["name"] = name;
if (!string.IsNullOrEmpty(description))
bodyObject["description"] = description;
if (conversions != null)
bodyObject["conversions"] = JToken.FromObject(conversions);
if (enrichments != null && enrichments.Count > 0)
bodyObject["enrichments"] = JToken.FromObject(enrichments);
if (normalizations != null && normalizations.Count > 0)
bodyObject["normalizations"] = JToken.FromObject(normalizations);
if (source != null)
bodyObject["source"] = JToken.FromObject(source);
req.Send = Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(bodyObject));
req.OnResponse = OnUpdateConfigurationResponse;
Connector.URL = GetServiceUrl() + string.Format("/v1/environments/{0}/configurations/{1}", environmentId, configurationId);
Authenticator.Authenticate(Connector);
return Connector.Send(req);
}
private void OnUpdateConfigurationResponse(RESTConnector.Request req, RESTConnector.Response resp)
{
DetailedResponse<Configuration> response = new DetailedResponse<Configuration>();
foreach (KeyValuePair<string, string> kvp in resp.Headers)
{
response.Headers.Add(kvp.Key, kvp.Value);
}
response.StatusCode = resp.HttpResponseCode;
try
{
string json = Encoding.UTF8.GetString(resp.Data);
response.Result = JsonConvert.DeserializeObject<Configuration>(json);
response.Response = json;
}
catch (Exception e)
{
Log.Error("DiscoveryService.OnUpdateConfigurationResponse()", "Exception: {0}", e.ToString());
resp.Success = false;
}
if (((RequestObject<Configuration>)req).Callback != null)
((RequestObject<Configuration>)req).Callback(response, resp.Error);
}
/// <summary>
/// Delete a configuration.
///
/// The deletion is performed unconditionally. A configuration deletion request succeeds even if the
/// configuration is referenced by a collection or document ingestion. However, documents that have already been
/// submitted for processing continue to use the deleted configuration. Documents are always processed with a
/// snapshot of the configuration as it existed at the time the document was submitted.
/// </summary>
/// <param name="callback">The callback function that is invoked when the operation completes.</param>
/// <param name="environmentId">The ID of the environment.</param>
/// <param name="configurationId">The ID of the configuration.</param>
/// <returns><see cref="DeleteConfigurationResponse" />DeleteConfigurationResponse</returns>
public bool DeleteConfiguration(Callback<DeleteConfigurationResponse> callback, string environmentId, string configurationId)
{
if (callback == null)
throw new ArgumentNullException("`callback` is required for `DeleteConfiguration`");
if (string.IsNullOrEmpty(Version))
throw new ArgumentNullException("`Version` is required");
if (string.IsNullOrEmpty(environmentId))
throw new ArgumentNullException("`environmentId` is required for `DeleteConfiguration`");
if (string.IsNullOrEmpty(configurationId))
throw new ArgumentNullException("`configurationId` is required for `DeleteConfiguration`");
RequestObject<DeleteConfigurationResponse> req = new RequestObject<DeleteConfigurationResponse>
{
Callback = callback,
HttpMethod = UnityWebRequest.kHttpVerbDELETE,
DisableSslVerification = DisableSslVerification
};