pyegeria 0.8.4.29__py3-none-any.whl → 0.8.4.31__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -57,6 +57,8 @@ def extract_related_elements_list(element_list):
57
57
  def related_elements_response(response: dict, detailed_response: bool):
58
58
  if detailed_response:
59
59
  return response
60
+ elif not "elementList" in response:
61
+ return response
60
62
  else:
61
63
  return extract_related_elements_list(response["elementList"])
62
64
 
@@ -75,21 +77,20 @@ def element_property_plus_list(element_list):
75
77
  def element_response(response: dict, element_type: str, detailed_response: bool):
76
78
  if detailed_response:
77
79
  return response
80
+ elif not element_type in response:
81
+ return response
78
82
  else:
79
83
  return element_properties_plus(response[element_type])
80
84
 
81
85
 
82
86
  def elements_response(response: dict, element_type: str, detailed_response: bool):
83
- if type(response) != dict:
84
- return "---"
87
+ print(response)
85
88
  if detailed_response:
86
89
  return response
90
+ elif not element_type in response:
91
+ return response
87
92
  else:
88
- return element_property_plus_list(response.get(element_type, "---"))
89
-
90
-
91
- # Todo - review with Kevin...
92
-
93
+ return element_property_plus_list(response[element_type])
93
94
 
94
95
  class FeedbackManager(Client):
95
96
  """FeedbackManager is a class that extends the Client class. It
@@ -147,19 +148,19 @@ class FeedbackManager(Client):
147
148
 
148
149
  Parameters
149
150
  ----------
150
- elementGUID
151
+ element_guid
151
152
  - String - unique id for the anchor element.
152
- commentGUID
153
+ comment_guid
153
154
  - String - unique id for an existing comment. Used to add a reply to a comment.
154
- serverName
155
+ server_name
155
156
  - name of the server instances for this request.
156
- isPublic
157
+ is_public
157
158
  - is this visible to other people
158
- requestBody
159
+ body
159
160
  - containing type of comment enum and the text of the comment.
160
- viewServiceURLMarker
161
- - optional view service URL marker (overrides accessServiceURLMarker)
162
- accessServiceURLMarker
161
+ view_service_url_marker
162
+ - optional view service URL marker (overrides access_service_url_marker)
163
+ access_service_url_marker
163
164
  - optional access service URL marker used to identify which back end service to call
164
165
 
165
166
  Returns
@@ -204,19 +205,19 @@ class FeedbackManager(Client):
204
205
 
205
206
  Parameters
206
207
  ----------
207
- elementGUID
208
+ element_guid
208
209
  - String - unique id for the anchor element.
209
- commentGUID
210
+ comment_guid
210
211
  - String - unique id for an existing comment. Used to add a reply to a comment.
211
- serverName
212
+ server_name
212
213
  - name of the server instances for this request.
213
- isPublic
214
+ is_public
214
215
  - is this visible to other people
215
- requestBody
216
+ body
216
217
  - containing type of comment enum and the text of the comment.
217
- viewServiceURLMarker
218
- - optional view service URL marker (overrides accessServiceURLMarker)
219
- accessServiceURLMarker
218
+ view_service_url_marker
219
+ - optional view service URL marker (overrides access_service_url_marker)
220
+ access_service_url_marker
220
221
  - optional access service URL marker used to identify which back end service to call
221
222
 
222
223
  Returns
@@ -270,17 +271,17 @@ class FeedbackManager(Client):
270
271
 
271
272
  Parameters
272
273
  ----------
273
- serverName
274
+ server_name
274
275
  - name of the server instances for this request.
275
- elementGUID
276
+ element_guid
276
277
  - String - unique id for the element.
277
- isPublic
278
+ is_public
278
279
  - is this visible to other people
279
- requestBody
280
+ body
280
281
  - containing type of comment enum and the text of the comment.
281
- viewServiceURLMarker
282
- - optional view service URL marker (overrides accessServiceURLMarker)
283
- accessServiceURLMarker
282
+ view_service_url_marker
283
+ - optional view service URL marker (overrides access_service_url_marker)
284
+ access_service_url_marker
284
285
  - optional access service URL marker used to identify which back end service to call
285
286
 
286
287
  Returns
@@ -325,17 +326,17 @@ class FeedbackManager(Client):
325
326
 
326
327
  Parameters
327
328
  ----------
328
- serverName
329
+ server_name
329
330
  - name of the server instances for this request.
330
- elementGUID
331
+ element_guid
331
332
  - String - unique id for the element.
332
- isPublic
333
+ is_public
333
334
  - is this visible to other people
334
- viewServiceURLMarker
335
- - optional view service URL marker (overrides accessServiceURLMarker)
336
- accessServiceURLMarker
335
+ view_service_url_marker
336
+ - optional view service URL marker (overrides access_service_url_marker)
337
+ access_service_url_marker
337
338
  - optional access service URL marker used to identify which back end service to call
338
- requestBody
339
+ body
339
340
  - containing type of comment enum and the text of the comment.
340
341
 
341
342
  Returns
@@ -383,17 +384,17 @@ class FeedbackManager(Client):
383
384
 
384
385
  Parameters
385
386
  ----------
386
- serverName
387
+ server_name
387
388
  - name of the server instances for this request.
388
- elementGUID
389
+ element_guid
389
390
  - String - unique id for the element.
390
- isPublic
391
+ is_public
391
392
  - is this visible to other people
392
- viewServiceURLMarker
393
- - optional view service URL marker (overrides accessServiceURLMarker)
394
- accessServiceURLMarker
393
+ view_service_url_marker
394
+ - optional view service URL marker (overrides access_service_url_marker)
395
+ access_service_url_marker
395
396
  - optional access service URL marker used to identify which back end service to call
396
- requestBody
397
+ body
397
398
  - optional effective time
398
399
 
399
400
  Returns
@@ -439,17 +440,17 @@ class FeedbackManager(Client):
439
440
 
440
441
  Parameters
441
442
  ----------
442
- serverName
443
+ server_name
443
444
  - name of the server instances for this request.
444
- elementGUID
445
+ element_guid
445
446
  - String - unique id for the element.
446
- isPublic
447
+ is_public
447
448
  - is this visible to other people
448
- viewServiceURLMarker
449
- - optional view service URL marker (overrides accessServiceURLMarker)
450
- accessServiceURLMarker
449
+ view_service_url_marker
450
+ - optional view service URL marker (overrides access_service_url_marker)
451
+ access_service_url_marker
451
452
  - optional access service URL marker used to identify which back end service to call
452
- requestBody
453
+ body
453
454
  - optional effective time
454
455
 
455
456
  Returns
@@ -496,17 +497,17 @@ class FeedbackManager(Client):
496
497
 
497
498
  Parameters
498
499
  ----------
499
- serverName
500
+ server_name
500
501
  - name of the server instances for this request.
501
- elementGUID
502
+ element_guid
502
503
  - String - unique id for the element.
503
- isPublic
504
+ is_public
504
505
  - is this visible to other people
505
- viewServiceURLMarker
506
- - optional view service URL marker (overrides accessServiceURLMarker)
507
- accessServiceURLMarker
506
+ view_service_url_marker
507
+ - optional view service URL marker (overrides access_service_url_marker)
508
+ access_service_url_marker
508
509
  - optional access service URL marker used to identify which back end service to call
509
- requestBody
510
+ body
510
511
  - containing the StarRating and user review of element.
511
512
 
512
513
  Returns
@@ -551,17 +552,17 @@ class FeedbackManager(Client):
551
552
 
552
553
  Parameters
553
554
  ----------
554
- serverName
555
+ server_name
555
556
  - name of the server instances for this request.
556
- elementGUID
557
+ element_guid
557
558
  - String - unique id for the element.
558
- isPublic
559
+ is_public
559
560
  - is this visible to other people
560
- viewServiceURLMarker
561
- - optional view service URL marker (overrides accessServiceURLMarker)
562
- accessServiceURLMarker
561
+ view_service_url_marker
562
+ - optional view service URL marker (overrides access_service_url_marker)
563
+ access_service_url_marker
563
564
  - optional access service URL marker used to identify which back end service to call
564
- requestBody
565
+ body
565
566
  - containing the StarRating and user review of element.
566
567
 
567
568
  Returns
@@ -609,17 +610,17 @@ class FeedbackManager(Client):
609
610
 
610
611
  Parameters
611
612
  ----------
612
- serverName
613
+ server_name
613
614
  - name of the server instances for this request.
614
- elementGUID
615
+ element_guid
615
616
  - unique id for the element.
616
- tagGUID
617
+ tag_guid
617
618
  - unique id of the tag.
618
- viewServiceURLMarker
619
- - optional view service URL marker (overrides accessServiceURLMarker)
620
- accessServiceURLMarker
619
+ view_service_url_marker
620
+ - optional view service URL marker (overrides access_service_url_marker)
621
+ access_service_url_marker
621
622
  - optional access service URL marker used to identify which back end service to call
622
- requestBody
623
+ body
623
624
  - optional effective time
624
625
 
625
626
  Returns
@@ -664,19 +665,19 @@ class FeedbackManager(Client):
664
665
 
665
666
  Parameters
666
667
  ----------
667
- elementGUID
668
+ element_guid
668
669
  - unique id for the element.
669
- tagGUID
670
+ tag_guid
670
671
  - unique id of the tag.
671
- serverName
672
+ server_name
672
673
  - name of the server instances for this request.
673
- isPublic
674
+ is_public
674
675
  - is this visible to other people
675
- requestBody
676
+ body
676
677
  - optional effective time
677
- viewServiceURLMarker
678
- - optional view service URL marker (overrides accessServiceURLMarker)
679
- accessServiceURLMarker
678
+ view_service_url_marker
679
+ - optional view service URL marker (overrides access_service_url_marker)
680
+ access_service_url_marker
680
681
  - optional access service URL marker used to identify which back end service to call
681
682
 
682
683
  Returns
@@ -724,17 +725,17 @@ class FeedbackManager(Client):
724
725
 
725
726
  Parameters
726
727
  ----------
727
- serverName
728
+ server_name
728
729
  - name of the server to route the request to
729
- questionCommentGUID
730
+ question_comment_guid
730
731
  - unique identifier of the comment containing the question
731
- answerCommentGUID
732
+ answer_comment_guid
732
733
  - unique identifier of the comment containing the accepted answer
733
- viewServiceURLMarker
734
- - optional view service URL marker (overrides accessServiceURLMarker)
735
- accessServiceURLMarker
734
+ view_service_url_marker
735
+ - optional view service URL marker (overrides access_service_url_marker)
736
+ access_service_url_marker
736
737
  - optional access service URL marker used to identify which back end service to call
737
- requestBody
738
+ body
738
739
  - properties to help with the mapping of the elements in the external asset manager and open metadata
739
740
 
740
741
  Returns
@@ -777,17 +778,17 @@ class FeedbackManager(Client):
777
778
 
778
779
  Parameters
779
780
  ----------
780
- serverName
781
+ server_name
781
782
  - name of the server to route the request to
782
- questionCommentGUID
783
+ question_comment_guid
783
784
  - unique identifier of the comment containing the question
784
- answerCommentGUID
785
+ answer_comment_guid
785
786
  - unique identifier of the comment containing the accepted answer
786
- viewServiceURLMarker
787
- - optional view service URL marker (overrides accessServiceURLMarker)
788
- accessServiceURLMarker
787
+ view_service_url_marker
788
+ - optional view service URL marker (overrides access_service_url_marker)
789
+ access_service_url_marker
789
790
  - optional access service URL marker used to identify which back end service to call
790
- requestBody
791
+ body
791
792
  - properties to help with the mapping of the elements in the external asset manager and open metadata
792
793
 
793
794
  Returns
@@ -832,13 +833,13 @@ class FeedbackManager(Client):
832
833
 
833
834
  Parameters
834
835
  ----------
835
- serverName
836
+ server_name
836
837
  - name of the server instances for this request.
837
- viewServiceURLMarker
838
- - optional view service URL marker (overrides accessServiceURLMarker)
839
- accessServiceURLMarker
838
+ view_service_url_marker
839
+ - optional view service URL marker (overrides access_service_url_marker)
840
+ access_service_url_marker
840
841
  - optional access service URL marker used to identify which back end service to call
841
- requestBody
842
+ body
842
843
  - public/private flag, name of the tag and (optional) description of the tag.
843
844
 
844
845
  Example
@@ -855,7 +856,7 @@ class FeedbackManager(Client):
855
856
 
856
857
  Returns
857
858
  -------
858
- new elementGUID
859
+ new element_guid
859
860
 
860
861
  Raises
861
862
  ------
@@ -892,13 +893,13 @@ class FeedbackManager(Client):
892
893
 
893
894
  Parameters
894
895
  ----------
895
- serverName
896
+ server_name
896
897
  - name of the server instances for this request.
897
- viewServiceURLMarker
898
- - optional view service URL marker (overrides accessServiceURLMarker)
899
- accessServiceURLMarker
898
+ view_service_url_marker
899
+ - optional view service URL marker (overrides access_service_url_marker)
900
+ access_service_url_marker
900
901
  - optional access service URL marker used to identify which back end service to call
901
- requestBody
902
+ body
902
903
  - public/private flag, name of the tag and (optional) description of the tag.
903
904
 
904
905
  Example
@@ -915,7 +916,7 @@ class FeedbackManager(Client):
915
916
 
916
917
  Returns
917
918
  -------
918
- new elementGUID
919
+ new element_guid
919
920
 
920
921
  Raises
921
922
  ------
@@ -949,15 +950,15 @@ class FeedbackManager(Client):
949
950
 
950
951
  Parameters
951
952
  ----------
952
- noteLogGUID
953
+ note_log_guid
953
954
  - unique identifier of the note log
954
- serverName
955
+ server_name
955
956
  - name of the server instances for this request
956
- requestBody
957
+ body
957
958
  - contains the name of the tag and (optional) description of the tag
958
- viewServiceURLMarker
959
- - optional view service URL marker (overrides accessServiceURLMarker)
960
- accessServiceURLMarker
959
+ view_service_url_marker
960
+ - optional view service URL marker (overrides access_service_url_marker)
961
+ access_service_url_marker
961
962
  - optional access service URL marker used to identify which back end service to call
962
963
 
963
964
  Returns
@@ -1000,15 +1001,15 @@ class FeedbackManager(Client):
1000
1001
 
1001
1002
  Parameters
1002
1003
  ----------
1003
- noteLogGUID
1004
+ note_log_guid
1004
1005
  - unique identifier of the note log
1005
- serverName
1006
+ server_name
1006
1007
  - name of the server instances for this request
1007
- requestBody
1008
+ body
1008
1009
  - contains the name of the tag and (optional) description of the tag
1009
- viewServiceURLMarker
1010
- - optional view service URL marker (overrides accessServiceURLMarker)
1011
- accessServiceURLMarker
1010
+ view_service_url_marker
1011
+ - optional view service URL marker (overrides access_service_url_marker)
1012
+ access_service_url_marker
1012
1013
  - optional access service URL marker used to identify which back end service to call
1013
1014
 
1014
1015
  Returns
@@ -1054,17 +1055,17 @@ class FeedbackManager(Client):
1054
1055
 
1055
1056
  Parameters
1056
1057
  ----------
1057
- elementGUID
1058
+ element_guid
1058
1059
  - unique identifier of the element where the note log is located
1059
- serverName
1060
+ server_name
1060
1061
  - name of the server instances for this request
1061
- isPublic
1062
+ is_public
1062
1063
  - is this element visible to other people.
1063
- requestBody
1064
+ body
1064
1065
  - contains the name of the tag and (optional) description of the tag
1065
- viewServiceURLMarker
1066
- - optional view service URL marker (overrides accessServiceURLMarker)
1067
- accessServiceURLMarker
1066
+ view_service_url_marker
1067
+ - optional view service URL marker (overrides access_service_url_marker)
1068
+ access_service_url_marker
1068
1069
  - optional access service URL marker used to identify which back end service to call
1069
1070
 
1070
1071
  Returns
@@ -1108,17 +1109,17 @@ class FeedbackManager(Client):
1108
1109
 
1109
1110
  Parameters
1110
1111
  ----------
1111
- elementGUID
1112
+ element_guid
1112
1113
  - unique identifier of the element where the note log is located
1113
- serverName
1114
+ server_name
1114
1115
  - name of the server instances for this request
1115
- isPublic
1116
+ is_public
1116
1117
  - is this element visible to other people.
1117
- requestBody
1118
+ body
1118
1119
  - contains the name of the tag and (optional) description of the tag
1119
- viewServiceURLMarker
1120
- - optional view service URL marker (overrides accessServiceURLMarker)
1121
- accessServiceURLMarker
1120
+ view_service_url_marker
1121
+ - optional view service URL marker (overrides access_service_url_marker)
1122
+ access_service_url_marker
1122
1123
  - optional access service URL marker used to identify which back end service to call
1123
1124
 
1124
1125
  Returns
@@ -1169,15 +1170,15 @@ class FeedbackManager(Client):
1169
1170
 
1170
1171
  Parameters
1171
1172
  ----------
1172
- serverName
1173
+ server_name
1173
1174
  - name of the server instances for this request
1174
- tagGUID
1175
+ tag_guid
1175
1176
  - String - unique id for the tag.
1176
- viewServiceURLMarker
1177
- - optional view service URL marker (overrides accessServiceURLMarker)
1178
- accessServiceURLMarker
1177
+ view_service_url_marker
1178
+ - optional view service URL marker (overrides access_service_url_marker)
1179
+ access_service_url_marker
1179
1180
  - optional access service URL marker used to identify which back end service to call
1180
- requestBody
1181
+ body
1181
1182
  - null request body.
1182
1183
 
1183
1184
  Returns
@@ -1240,15 +1241,15 @@ class FeedbackManager(Client):
1240
1241
 
1241
1242
  Parameters
1242
1243
  ----------
1243
- serverName
1244
+ server_name
1244
1245
  - name of the server instances for this request
1245
- tagGUID
1246
+ tag_guid
1246
1247
  - String - unique id for the tag.
1247
- viewServiceURLMarker
1248
- - optional view service URL marker (overrides accessServiceURLMarker)
1249
- accessServiceURLMarker
1248
+ view_service_url_marker
1249
+ - optional view service URL marker (overrides access_service_url_marker)
1250
+ access_service_url_marker
1250
1251
  - optional access service URL marker used to identify which back end service to call
1251
- requestBody
1252
+ body
1252
1253
  - null request body.
1253
1254
 
1254
1255
  Returns
@@ -1314,23 +1315,23 @@ class FeedbackManager(Client):
1314
1315
 
1315
1316
  Parameters
1316
1317
  ----------
1317
- serverName
1318
+ server_name
1318
1319
  - name of the server instances for this request.
1319
- startsWith
1320
+ starts_with
1320
1321
  - does the value start with the supplied string?
1321
- endsWith
1322
+ ends_with
1322
1323
  - does the value end with the supplied string?
1323
- ignoreCase
1324
+ ignore_case
1324
1325
  - should the search ignore case?
1325
- startFrom
1326
+ start_from
1326
1327
  - index of the list to start from (0 for start).
1327
- pageSize
1328
+ page_size
1328
1329
  - maximum number of elements to return.
1329
- viewServiceURLMarker
1330
- - optional view service URL marker (overrides accessServiceURLMarker)
1331
- accessServiceURLMarker
1330
+ view_service_url_marker
1331
+ - optional view service URL marker (overrides access_service_url_marker)
1332
+ access_service_url_marker
1332
1333
  - optional access service URL marker used to identify which back end service to call
1333
- requestBody
1334
+ body
1334
1335
  - search string and effective time.
1335
1336
 
1336
1337
  Returns
@@ -1383,23 +1384,23 @@ class FeedbackManager(Client):
1383
1384
 
1384
1385
  Parameters
1385
1386
  ----------
1386
- serverName
1387
+ server_name
1387
1388
  - name of the server instances for this request.
1388
- startsWith
1389
+ starts_with
1389
1390
  - does the value start with the supplied string?
1390
- endsWith
1391
+ ends_with
1391
1392
  - does the value end with the supplied string?
1392
- ignoreCase
1393
+ ignore_case
1393
1394
  - should the search ignore case?
1394
- startFrom
1395
+ start_from
1395
1396
  - index of the list to start from (0 for start).
1396
- pageSize
1397
+ page_size
1397
1398
  - maximum number of elements to return.
1398
- viewServiceURLMarker
1399
- - optional view service URL marker (overrides accessServiceURLMarker)
1400
- accessServiceURLMarker
1399
+ view_service_url_marker
1400
+ - optional view service URL marker (overrides access_service_url_marker)
1401
+ access_service_url_marker
1401
1402
  - optional access service URL marker used to identify which back end service to call
1402
- requestBody
1403
+ body
1403
1404
  - search string and effective time.
1404
1405
 
1405
1406
  Returns
@@ -1454,23 +1455,23 @@ class FeedbackManager(Client):
1454
1455
 
1455
1456
  Parameters
1456
1457
  ----------
1457
- requestBody
1458
+ body
1458
1459
  - search string and effective time.
1459
- serverName
1460
+ server_name
1460
1461
  - name of the server instances for this request.
1461
- startsWith
1462
+ starts_with
1462
1463
  - does the value start with the supplied string?
1463
- endsWith
1464
+ ends_with
1464
1465
  - does the value end with the supplied string?
1465
- ignoreCase
1466
+ ignore_case
1466
1467
  - should the search ignore case?
1467
- startFrom
1468
+ start_from
1468
1469
  - index of the list to start from (0 for start).
1469
- pageSize
1470
+ page_size
1470
1471
  - maximum number of elements to return.
1471
- viewServiceURLMarker
1472
- - optional view service URL marker (overrides accessServiceURLMarker)
1473
- accessServiceURLMarker
1472
+ view_service_url_marker
1473
+ - optional view service URL marker (overrides access_service_url_marker)
1474
+ access_service_url_marker
1474
1475
  - optional access service URL marker used to identify which back end service to call
1475
1476
 
1476
1477
  Returns
@@ -1522,23 +1523,23 @@ class FeedbackManager(Client):
1522
1523
 
1523
1524
  Parameters
1524
1525
  ----------
1525
- requestBody
1526
+ body
1526
1527
  - search string and effective time.
1527
- serverName
1528
+ server_name
1528
1529
  - name of the server instances for this request.
1529
- startsWith
1530
+ starts_with
1530
1531
  - does the value start with the supplied string?
1531
- endsWith
1532
+ ends_with
1532
1533
  - does the value end with the supplied string?
1533
- ignoreCase
1534
+ ignore_case
1534
1535
  - should the search ignore case?
1535
- startFrom
1536
+ start_from
1536
1537
  - index of the list to start from (0 for start).
1537
- pageSize
1538
+ page_size
1538
1539
  - maximum number of elements to return.
1539
- viewServiceURLMarker
1540
- - optional view service URL marker (overrides accessServiceURLMarker)
1541
- accessServiceURLMarker
1540
+ view_service_url_marker
1541
+ - optional view service URL marker (overrides access_service_url_marker)
1542
+ access_service_url_marker
1542
1543
  - optional access service URL marker used to identify which back end service to call
1543
1544
 
1544
1545
  Returns
@@ -1593,23 +1594,23 @@ class FeedbackManager(Client):
1593
1594
 
1594
1595
  Parameters
1595
1596
  ----------
1596
- requestBody
1597
+ body
1597
1598
  - search string and effective time.
1598
- serverName
1599
+ server_name
1599
1600
  - name of the server instances for this request.
1600
- startsWith
1601
+ starts_with
1601
1602
  - does the value start with the supplied string?
1602
- endsWith
1603
+ ends_with
1603
1604
  - does the value end with the supplied string?
1604
- ignoreCase
1605
+ ignore_case
1605
1606
  - should the search ignore case?
1606
- startFrom
1607
+ start_from
1607
1608
  - index of the list to start from (0 for start).
1608
- pageSize
1609
+ page_size
1609
1610
  - maximum number of elements to return.
1610
- viewServiceURLMarker
1611
- - optional view service URL marker (overrides accessServiceURLMarker)
1612
- accessServiceURLMarker
1611
+ view_service_url_marker
1612
+ - optional view service URL marker (overrides access_service_url_marker)
1613
+ access_service_url_marker
1613
1614
  - optional access service URL marker used to identify which back end service to call
1614
1615
 
1615
1616
  Returns
@@ -1661,23 +1662,23 @@ class FeedbackManager(Client):
1661
1662
 
1662
1663
  Parameters
1663
1664
  ----------
1664
- requestBody
1665
+ body
1665
1666
  - search string and effective time.
1666
- serverName
1667
+ server_name
1667
1668
  - name of the server instances for this request.
1668
- startsWith
1669
+ starts_with
1669
1670
  - does the value start with the supplied string?
1670
- endsWith
1671
+ ends_with
1671
1672
  - does the value end with the supplied string?
1672
- ignoreCase
1673
+ ignore_case
1673
1674
  - should the search ignore case?
1674
- startFrom
1675
+ start_from
1675
1676
  - index of the list to start from (0 for start).
1676
- pageSize
1677
+ page_size
1677
1678
  - maximum number of elements to return.
1678
- viewServiceURLMarker
1679
- - optional view service URL marker (overrides accessServiceURLMarker)
1680
- accessServiceURLMarker
1679
+ view_service_url_marker
1680
+ - optional view service URL marker (overrides access_service_url_marker)
1681
+ access_service_url_marker
1681
1682
  - optional access service URL marker used to identify which back end service to call
1682
1683
 
1683
1684
  Returns
@@ -1732,23 +1733,23 @@ class FeedbackManager(Client):
1732
1733
 
1733
1734
  Parameters
1734
1735
  ----------
1735
- serverName
1736
+ server_name
1736
1737
  - name of the server instances for this request.
1737
- startsWith
1738
+ starts_with
1738
1739
  - does the value start with the supplied string?
1739
- endsWith
1740
+ ends_with
1740
1741
  - does the value end with the supplied string?
1741
- ignoreCase
1742
+ ignore_case
1742
1743
  - should the search ignore case?
1743
- startFrom
1744
+ start_from
1744
1745
  - index of the list to start from (0 for start).
1745
- pageSize
1746
+ page_size
1746
1747
  - maximum number of elements to return.
1747
- viewServiceURLMarker
1748
- - optional view service URL marker (overrides accessServiceURLMarker)
1749
- accessServiceURLMarker
1748
+ view_service_url_marker
1749
+ - optional view service URL marker (overrides access_service_url_marker)
1750
+ access_service_url_marker
1750
1751
  - optional access service URL marker used to identify which back end service to call
1751
- requestBody
1752
+ body
1752
1753
  - search string and effective time.
1753
1754
 
1754
1755
  Returns
@@ -1800,23 +1801,23 @@ class FeedbackManager(Client):
1800
1801
 
1801
1802
  Parameters
1802
1803
  ----------
1803
- serverName
1804
+ server_name
1804
1805
  - name of the server instances for this request.
1805
- startsWith
1806
+ starts_with
1806
1807
  - does the value start with the supplied string?
1807
- endsWith
1808
+ ends_with
1808
1809
  - does the value end with the supplied string?
1809
- ignoreCase
1810
+ ignore_case
1810
1811
  - should the search ignore case?
1811
- startFrom
1812
+ start_from
1812
1813
  - index of the list to start from (0 for start).
1813
- pageSize
1814
+ page_size
1814
1815
  - maximum number of elements to return.
1815
- viewServiceURLMarker
1816
- - optional view service URL marker (overrides accessServiceURLMarker)
1817
- accessServiceURLMarker
1816
+ view_service_url_marker
1817
+ - optional view service URL marker (overrides access_service_url_marker)
1818
+ access_service_url_marker
1818
1819
  - optional access service URL marker used to identify which back end service to call
1819
- requestBody
1820
+ body
1820
1821
  - search string and effective time.
1821
1822
 
1822
1823
  Returns
@@ -1873,21 +1874,21 @@ class FeedbackManager(Client):
1873
1874
  ----------
1874
1875
  body
1875
1876
  - search string and effective time.
1876
- serverName
1877
+ server_name
1877
1878
  - name of the server instances for this request.
1878
- startsWith
1879
+ starts_with
1879
1880
  - does the value start with the supplied string?
1880
- endsWith
1881
+ ends_with
1881
1882
  - does the value end with the supplied string?
1882
- ignoreCase
1883
+ ignore_case
1883
1884
  - should the search ignore case?
1884
- startFrom
1885
+ start_from
1885
1886
  - index of the list to start from (0 for start).
1886
- pageSize
1887
+ page_size
1887
1888
  - maximum number of elements to return.
1888
- viewServiceURLMarker
1889
- - optional view service URL marker (overrides accessServiceURLMarker)
1890
- accessServiceURLMarker
1889
+ view_service_url_marker
1890
+ - optional view service URL marker (overrides access_service_url_marker)
1891
+ access_service_url_marker
1891
1892
  - optional access service URL marker used to identify which back end service to call
1892
1893
 
1893
1894
  Returns
@@ -1939,23 +1940,23 @@ class FeedbackManager(Client):
1939
1940
 
1940
1941
  Parameters
1941
1942
  ----------
1942
- requestBody
1943
+ body
1943
1944
  - search string and effective time.
1944
- serverName
1945
+ server_name
1945
1946
  - name of the server instances for this request.
1946
- startsWith
1947
+ starts_with
1947
1948
  - does the value start with the supplied string?
1948
- endsWith
1949
+ ends_with
1949
1950
  - does the value end with the supplied string?
1950
- ignoreCase
1951
+ ignore_case
1951
1952
  - should the search ignore case?
1952
- startFrom
1953
+ start_from
1953
1954
  - index of the list to start from (0 for start).
1954
- pageSize
1955
+ page_size
1955
1956
  - maximum number of elements to return.
1956
- viewServiceURLMarker
1957
- - optional view service URL marker (overrides accessServiceURLMarker)
1958
- accessServiceURLMarker
1957
+ view_service_url_marker
1958
+ - optional view service URL marker (overrides access_service_url_marker)
1959
+ access_service_url_marker
1959
1960
  - optional access service URL marker used to identify which back end service to call
1960
1961
 
1961
1962
  Returns
@@ -2008,19 +2009,19 @@ class FeedbackManager(Client):
2008
2009
 
2009
2010
  Parameters
2010
2011
  ----------
2011
- elementGUID
2012
+ element_guid
2012
2013
  - unique identifier for the element that the comments are connected to (maybe a comment too).
2013
- serverName
2014
+ server_name
2014
2015
  - name of the server instances for this request
2015
2016
  body
2016
2017
  - optional effective time
2017
- startFrom
2018
+ start_from
2018
2019
  - index of the list to start from (0 for start)
2019
- pageSize
2020
+ page_size
2020
2021
  - maximum number of elements to return.
2021
- viewServiceURLMarker
2022
- - optional view service URL marker (overrides accessServiceURLMarker)
2023
- accessServiceURLMarker
2022
+ view_service_url_marker
2023
+ - optional view service URL marker (overrides access_service_url_marker)
2024
+ access_service_url_marker
2024
2025
  - optional access service URL marker used to identify which back end service to call
2025
2026
 
2026
2027
  Returns
@@ -2067,19 +2068,19 @@ class FeedbackManager(Client):
2067
2068
 
2068
2069
  Parameters
2069
2070
  ----------
2070
- elementGUID
2071
+ element_guid
2071
2072
  - unique identifier for the element that the comments are connected to (maybe a comment too).
2072
- serverName
2073
+ server_name
2073
2074
  - name of the server instances for this request
2074
2075
  body
2075
2076
  - optional effective time
2076
- startFrom
2077
+ start_from
2077
2078
  - index of the list to start from (0 for start)
2078
- pageSize
2079
+ page_size
2079
2080
  - maximum number of elements to return.
2080
- viewServiceURLMarker
2081
- - optional view service URL marker (overrides accessServiceURLMarker)
2082
- accessServiceURLMarker
2081
+ view_service_url_marker
2082
+ - optional view service URL marker (overrides access_service_url_marker)
2083
+ access_service_url_marker
2083
2084
  - optional access service URL marker used to identify which back end service to call
2084
2085
 
2085
2086
  Returns
@@ -2128,15 +2129,15 @@ class FeedbackManager(Client):
2128
2129
 
2129
2130
  Parameters
2130
2131
  ----------
2131
- serverName
2132
+ server_name
2132
2133
  - name of the server instances for this request
2133
- commentGUID
2134
+ comment_guid
2134
2135
  - unique identifier for the comment object.
2135
- viewServiceURLMarker
2136
- - optional view service URL marker (overrides accessServiceURLMarker)
2137
- accessServiceURLMarker
2136
+ view_service_url_marker
2137
+ - optional view service URL marker (overrides access_service_url_marker)
2138
+ access_service_url_marker
2138
2139
  - optional access service URL marker used to identify which back end service to call
2139
- requestBody
2140
+ body
2140
2141
  - optional effective time
2141
2142
 
2142
2143
  Returns
@@ -2179,15 +2180,15 @@ class FeedbackManager(Client):
2179
2180
 
2180
2181
  Parameters
2181
2182
  ----------
2182
- commentGUID
2183
+ comment_guid
2183
2184
  - unique identifier for the comment object.
2184
- serverName
2185
+ server_name
2185
2186
  - name of the server instances for this request
2186
- viewServiceURLMarker
2187
- - optional view service URL marker (overrides accessServiceURLMarker)
2188
- accessServiceURLMarker
2187
+ view_service_url_marker
2188
+ - optional view service URL marker (overrides access_service_url_marker)
2189
+ access_service_url_marker
2189
2190
  - optional access service URL marker used to identify which back end service to call
2190
- requestBody
2191
+ body
2191
2192
  - optional effective time
2192
2193
 
2193
2194
  Returns
@@ -2235,19 +2236,19 @@ class FeedbackManager(Client):
2235
2236
 
2236
2237
  Parameters
2237
2238
  ----------
2238
- elementGUID
2239
+ element_guid
2239
2240
  - unique identifier for the element that the likes are connected to
2240
- serverName
2241
+ server_name
2241
2242
  - name of the server instances for this request
2242
2243
  body
2243
2244
  - optional effective time
2244
- startFrom
2245
+ start_from
2245
2246
  - index of the list to start from (0 for start)
2246
- pageSize
2247
+ page_size
2247
2248
  - maximum number of elements to return.
2248
- viewServiceURLMarker
2249
- - optional view service URL marker (overrides accessServiceURLMarker)
2250
- accessServiceURLMarker
2249
+ view_service_url_marker
2250
+ - optional view service URL marker (overrides access_service_url_marker)
2251
+ access_service_url_marker
2251
2252
  - optional access service URL marker used to identify which back end service to call
2252
2253
 
2253
2254
 
@@ -2277,8 +2278,8 @@ class FeedbackManager(Client):
2277
2278
  )
2278
2279
  url = f"{base_path(self, server_name)}/elements/{element_guid}/likes/retrieve{possible_query_params}"
2279
2280
  response = await self._async_make_request("POST", url, body)
2280
- # return elements_response(response.json(), "elementList", detailed_response)
2281
- return response.json().get("ratings", "---")
2281
+ return elements_response(response.json(), "elementList", detailed_response)
2282
+ #return response.json().get("ratings", "---")
2282
2283
 
2283
2284
  def get_attached_likes(
2284
2285
  self,
@@ -2297,19 +2298,19 @@ class FeedbackManager(Client):
2297
2298
 
2298
2299
  Parameters
2299
2300
  ----------
2300
- elementGUID
2301
+ element_guid
2301
2302
  - unique identifier for the element that the likes are connected to
2302
- serverName
2303
+ server_name
2303
2304
  - name of the server instances for this request
2304
2305
  body
2305
2306
  - optional effective time
2306
- startFrom
2307
+ start_from
2307
2308
  - index of the list to start from (0 for start)
2308
- pageSize
2309
+ page_size
2309
2310
  - maximum number of elements to return.
2310
- viewServiceURLMarker
2311
- - optional view service URL marker (overrides accessServiceURLMarker)
2312
- accessServiceURLMarker
2311
+ view_service_url_marker
2312
+ - optional view service URL marker (overrides access_service_url_marker)
2313
+ access_service_url_marker
2313
2314
  - optional access service URL marker used to identify which back end service to call
2314
2315
 
2315
2316
 
@@ -2360,19 +2361,19 @@ class FeedbackManager(Client):
2360
2361
 
2361
2362
  Parameters
2362
2363
  ----------
2363
- elementGUID
2364
+ element_guid
2364
2365
  - unique identifier for the element that the ratings are connected to
2365
- serverName
2366
+ server_name
2366
2367
  - name of the server instances for this request
2367
2368
  body
2368
2369
  - optional effective time
2369
- startFrom
2370
+ start_from
2370
2371
  - index of the list to start from (0 for start)
2371
- pageSize
2372
+ page_size
2372
2373
  - maximum number of elements to return.
2373
- viewServiceURLMarker
2374
- - optional view service URL marker (overrides accessServiceURLMarker)
2375
- accessServiceURLMarker
2374
+ view_service_url_marker
2375
+ - optional view service URL marker (overrides access_service_url_marker)
2376
+ access_service_url_marker
2376
2377
  - optional access service URL marker used to identify which back end service to call
2377
2378
 
2378
2379
  Returns
@@ -2419,19 +2420,19 @@ class FeedbackManager(Client):
2419
2420
 
2420
2421
  Parameters
2421
2422
  ----------
2422
- elementGUID
2423
+ element_guid
2423
2424
  - unique identifier for the element that the ratings are connected to
2424
- serverName
2425
+ server_name
2425
2426
  - name of the server instances for this request
2426
2427
  body
2427
2428
  - optional effective time
2428
- startFrom
2429
+ start_from
2429
2430
  - index of the list to start from (0 for start)
2430
- pageSize
2431
+ page_size
2431
2432
  - maximum number of elements to return.
2432
- viewServiceURLMarker
2433
- - optional view service URL marker (overrides accessServiceURLMarker)
2434
- accessServiceURLMarker
2433
+ view_service_url_marker
2434
+ - optional view service URL marker (overrides access_service_url_marker)
2435
+ access_service_url_marker
2435
2436
  - optional access service URL marker used to identify which back end service to call
2436
2437
 
2437
2438
  Returns
@@ -2481,19 +2482,19 @@ class FeedbackManager(Client):
2481
2482
 
2482
2483
  Parameters
2483
2484
  ----------
2484
- elementGUID
2485
+ element_guid
2485
2486
  - unique identifier for the element that the ratings are connected to
2486
- serverName
2487
+ server_name
2487
2488
  - name of the server instances for this request
2488
2489
  body
2489
2490
  - optional effective time
2490
- startFrom
2491
+ start_from
2491
2492
  - index of the list to start from (0 for start)
2492
- pageSize
2493
+ page_size
2493
2494
  - maximum number of elements to return.
2494
- viewServiceURLMarker
2495
- - optional view service URL marker (overrides accessServiceURLMarker)
2496
- accessServiceURLMarker
2495
+ view_service_url_marker
2496
+ - optional view service URL marker (overrides access_service_url_marker)
2497
+ access_service_url_marker
2497
2498
  - optional access service URL marker used to identify which back end service to call
2498
2499
 
2499
2500
  Returns
@@ -2522,8 +2523,8 @@ class FeedbackManager(Client):
2522
2523
  )
2523
2524
  url = f"{base_path(self, server_name)}/elements/{element_guid}/tags/retrieve{possible_query_params}"
2524
2525
  response = await self._async_make_request("POST", url, body)
2525
- return response.json().get("tags", "---")
2526
- # return elements_response(response.json(), "tags", detailed_response)
2526
+ #return response.json().get("tags", "---")
2527
+ return elements_response(response.json(), "tags", detailed_response)
2527
2528
 
2528
2529
  def get_attached_tags(
2529
2530
  self,
@@ -2541,19 +2542,19 @@ class FeedbackManager(Client):
2541
2542
 
2542
2543
  Parameters
2543
2544
  ----------
2544
- elementGUID
2545
+ element_guid
2545
2546
  - unique identifier for the element that the ratings are connected to
2546
- serverName
2547
+ server_name
2547
2548
  - name of the server instances for this request
2548
2549
  body
2549
2550
  - optional effective time
2550
- startFrom
2551
+ start_from
2551
2552
  - index of the list to start from (0 for start)
2552
- pageSize
2553
+ page_size
2553
2554
  - maximum number of elements to return.
2554
- viewServiceURLMarker
2555
- - optional view service URL marker (overrides accessServiceURLMarker)
2556
- accessServiceURLMarker
2555
+ view_service_url_marker
2556
+ - optional view service URL marker (overrides access_service_url_marker)
2557
+ access_service_url_marker
2557
2558
  - optional access service URL marker used to identify which back end service to call
2558
2559
 
2559
2560
  Returns
@@ -2604,19 +2605,19 @@ class FeedbackManager(Client):
2604
2605
 
2605
2606
  Parameters
2606
2607
  ----------
2607
- tagGUID
2608
+ tag_guid
2608
2609
  - unique identifier of tag.
2609
- serverName
2610
+ server_name
2610
2611
  - name of the server instances for this request
2611
- requestBody
2612
+ body
2612
2613
  - optional effective time
2613
- startFrom
2614
+ start_from
2614
2615
  - index of the list to start from (0 for start)
2615
- pageSize
2616
+ page_size
2616
2617
  - maximum number of elements to return.
2617
- viewServiceURLMarker
2618
- - optional view service URL marker (overrides accessServiceURLMarker)
2619
- accessServiceURLMarker
2618
+ view_service_url_marker
2619
+ - optional view service URL marker (overrides access_service_url_marker)
2620
+ access_service_url_marker
2620
2621
  - optional access service URL marker used to identify which back end service to call
2621
2622
 
2622
2623
  Returns
@@ -2663,19 +2664,19 @@ class FeedbackManager(Client):
2663
2664
 
2664
2665
  Parameters
2665
2666
  ----------
2666
- tagGUID
2667
+ tag_guid
2667
2668
  - unique identifier of tag.
2668
- serverName
2669
+ server_name
2669
2670
  - name of the server instances for this request
2670
- requestBody
2671
+ body
2671
2672
  - optional effective time
2672
- startFrom
2673
+ start_from
2673
2674
  - index of the list to start from (0 for start)
2674
- pageSize
2675
+ page_size
2675
2676
  - maximum number of elements to return.
2676
- viewServiceURLMarker
2677
- - optional view service URL marker (overrides accessServiceURLMarker)
2678
- accessServiceURLMarker
2677
+ view_service_url_marker
2678
+ - optional view service URL marker (overrides access_service_url_marker)
2679
+ access_service_url_marker
2679
2680
  - optional access service URL marker used to identify which back end service to call
2680
2681
 
2681
2682
  Returns
@@ -2724,13 +2725,13 @@ class FeedbackManager(Client):
2724
2725
 
2725
2726
  Parameters
2726
2727
  ----------
2727
- noteGUID
2728
+ note_guid
2728
2729
  - unique identifier of the requested metadata element
2729
- serverName
2730
+ server_name
2730
2731
  - name of the server instances for this request
2731
- viewServiceURLMarker
2732
- - optional view service URL marker (overrides accessServiceURLMarker)
2733
- accessServiceURLMarker
2732
+ view_service_url_marker
2733
+ - optional view service URL marker (overrides access_service_url_marker)
2734
+ access_service_url_marker
2734
2735
  - optional access service URL marker used to identify which back end service to call
2735
2736
 
2736
2737
  Returns
@@ -2773,13 +2774,13 @@ class FeedbackManager(Client):
2773
2774
 
2774
2775
  Parameters
2775
2776
  ----------
2776
- noteGUID
2777
+ note_guid
2777
2778
  - unique identifier of the requested metadata element
2778
- serverName
2779
+ server_name
2779
2780
  - name of the server instances for this request
2780
- viewServiceURLMarker
2781
- - optional view service URL marker (overrides accessServiceURLMarker)
2782
- accessServiceURLMarker
2781
+ view_service_url_marker
2782
+ - optional view service URL marker (overrides access_service_url_marker)
2783
+ access_service_url_marker
2783
2784
  - optional access service URL marker used to identify which back end service to call
2784
2785
 
2785
2786
  Returns
@@ -2826,15 +2827,15 @@ class FeedbackManager(Client):
2826
2827
 
2827
2828
  Parameters
2828
2829
  ----------
2829
- serverName
2830
+ server_name
2830
2831
  - name of the server instances for this request
2831
- noteLogGUID
2832
+ note_log_guid
2832
2833
  - unique identifier of the requested metadata element
2833
- viewServiceURLMarker
2834
- - optional view service URL marker (overrides accessServiceURLMarker)
2835
- accessServiceURLMarker
2834
+ view_service_url_marker
2835
+ - optional view service URL marker (overrides access_service_url_marker)
2836
+ access_service_url_marker
2836
2837
  - optional access service URL marker used to identify which back end service to call
2837
- requestBody
2838
+ body
2838
2839
  - optional effective time
2839
2840
 
2840
2841
  Returns
@@ -2877,15 +2878,15 @@ class FeedbackManager(Client):
2877
2878
 
2878
2879
  Parameters
2879
2880
  ----------
2880
- serverName
2881
+ server_name
2881
2882
  - name of the server instances for this request
2882
- noteLogGUID
2883
+ note_log_guid
2883
2884
  - unique identifier of the requested metadata element
2884
- viewServiceURLMarker
2885
- - optional view service URL marker (overrides accessServiceURLMarker)
2886
- accessServiceURLMarker
2885
+ view_service_url_marker
2886
+ - optional view service URL marker (overrides access_service_url_marker)
2887
+ access_service_url_marker
2887
2888
  - optional access service URL marker used to identify which back end service to call
2888
- requestBody
2889
+ body
2889
2890
  - optional effective time
2890
2891
 
2891
2892
  Returns
@@ -2935,17 +2936,17 @@ class FeedbackManager(Client):
2935
2936
 
2936
2937
  Parameters
2937
2938
  ----------
2938
- serverName
2939
+ server_name
2939
2940
  - name of the server instances for this request
2940
- startFrom
2941
+ start_from
2941
2942
  - paging start point
2942
- pageSize
2943
+ page_size
2943
2944
  - maximum results that can be returned
2944
- viewServiceURLMarker
2945
- - optional view service URL marker (overrides accessServiceURLMarker)
2946
- accessServiceURLMarker
2945
+ view_service_url_marker
2946
+ - optional view service URL marker (overrides access_service_url_marker)
2947
+ access_service_url_marker
2947
2948
  - optional access service URL marker used to identify which back end service to call
2948
- requestBody
2949
+ body
2949
2950
  - name to search for and correlators
2950
2951
 
2951
2952
  Returns
@@ -2995,15 +2996,15 @@ class FeedbackManager(Client):
2995
2996
  ----------
2996
2997
  body
2997
2998
  - name to search for and correlators
2998
- serverName
2999
+ server_name
2999
3000
  - name of the server instances for this request
3000
- startFrom
3001
+ start_from
3001
3002
  - paging start point
3002
- pageSize
3003
+ page_size
3003
3004
  - maximum results that can be returned
3004
- viewServiceURLMarker
3005
- - optional view service URL marker (overrides accessServiceURLMarker)
3006
- accessServiceURLMarker
3005
+ view_service_url_marker
3006
+ - optional view service URL marker (overrides access_service_url_marker)
3007
+ access_service_url_marker
3007
3008
  - optional access service URL marker used to identify which back end service to call
3008
3009
 
3009
3010
  Returns
@@ -3053,19 +3054,19 @@ class FeedbackManager(Client):
3053
3054
 
3054
3055
  Parameters
3055
3056
  ----------
3056
- elementGUID
3057
+ element_guid
3057
3058
  - element to start from
3058
3059
  body
3059
3060
  - optional effective time
3060
- serverName
3061
+ server_name
3061
3062
  - name of the server instances for this request
3062
- startFrom
3063
+ start_from
3063
3064
  - paging start point
3064
- pageSize
3065
+ page_size
3065
3066
  - maximum results that can be returned
3066
- viewServiceURLMarker
3067
- - optional view service URL marker (overrides accessServiceURLMarker)
3068
- accessServiceURLMarker
3067
+ view_service_url_marker
3068
+ - optional view service URL marker (overrides access_service_url_marker)
3069
+ access_service_url_marker
3069
3070
  - optional access service URL marker used to identify which back end service to call
3070
3071
 
3071
3072
  Returns
@@ -3112,19 +3113,19 @@ class FeedbackManager(Client):
3112
3113
 
3113
3114
  Parameters
3114
3115
  ----------
3115
- elementGUID
3116
+ element_guid
3116
3117
  - element to start from
3117
3118
  body
3118
3119
  - optional effective time
3119
- serverName
3120
+ server_name
3120
3121
  - name of the server instances for this request
3121
- startFrom
3122
+ start_from
3122
3123
  - paging start point
3123
- pageSize
3124
+ page_size
3124
3125
  - maximum results that can be returned
3125
- viewServiceURLMarker
3126
- - optional view service URL marker (overrides accessServiceURLMarker)
3127
- accessServiceURLMarker
3126
+ view_service_url_marker
3127
+ - optional view service URL marker (overrides access_service_url_marker)
3128
+ access_service_url_marker
3128
3129
  - optional access service URL marker used to identify which back end service to call
3129
3130
 
3130
3131
  Returns
@@ -3175,19 +3176,19 @@ class FeedbackManager(Client):
3175
3176
 
3176
3177
  Parameters
3177
3178
  ----------
3178
- noteLogGUID
3179
+ note_log_guid
3179
3180
  - unique identifier of the note log of interest
3180
3181
  body
3181
3182
  - optional effective time
3182
- serverName
3183
+ server_name
3183
3184
  - name of the server instances for this request
3184
- startFrom
3185
+ start_from
3185
3186
  - paging start point
3186
- pageSize
3187
+ page_size
3187
3188
  - maximum results that can be returned
3188
- viewServiceURLMarker
3189
- - optional view service URL marker (overrides accessServiceURLMarker)
3190
- accessServiceURLMarker
3189
+ view_service_url_marker
3190
+ - optional view service URL marker (overrides access_service_url_marker)
3191
+ access_service_url_marker
3191
3192
  - optional access service URL marker used to identify which back end service to call
3192
3193
 
3193
3194
  Returns
@@ -3234,19 +3235,19 @@ class FeedbackManager(Client):
3234
3235
 
3235
3236
  Parameters
3236
3237
  ----------
3237
- noteLogGUID
3238
+ note_log_guid
3238
3239
  - unique identifier of the note log of interest
3239
3240
  body
3240
3241
  - optional effective time
3241
- serverName
3242
+ server_name
3242
3243
  - name of the server instances for this request
3243
- startFrom
3244
+ start_from
3244
3245
  - paging start point
3245
- pageSize
3246
+ page_size
3246
3247
  - maximum results that can be returned
3247
- viewServiceURLMarker
3248
- - optional view service URL marker (overrides accessServiceURLMarker)
3249
- accessServiceURLMarker
3248
+ view_service_url_marker
3249
+ - optional view service URL marker (overrides access_service_url_marker)
3250
+ access_service_url_marker
3250
3251
  - optional access service URL marker used to identify which back end service to call
3251
3252
 
3252
3253
  Returns
@@ -3290,19 +3291,19 @@ class FeedbackManager(Client):
3290
3291
  detailed_response: bool = False,
3291
3292
  ) -> dict | str:
3292
3293
  """
3293
- Return the informal tag for the supplied unique identifier (tagGUID).
3294
+ Return the informal tag for the supplied unique identifier (tag_guid).
3294
3295
 
3295
3296
  Parameters
3296
3297
  ----------
3297
- serverName
3298
+ server_name
3298
3299
  - name of the server instances for this request.
3299
- tagGUID
3300
+ tag_guid
3300
3301
  - unique identifier of the meaning.
3301
- viewServiceURLMarker
3302
- - optional view service URL marker (overrides accessServiceURLMarker)
3303
- accessServiceURLMarker
3302
+ view_service_url_marker
3303
+ - optional view service URL marker (overrides access_service_url_marker)
3304
+ access_service_url_marker
3304
3305
  - optional access service URL marker used to identify which back end service to call
3305
- requestBody
3306
+ body
3306
3307
  - optional effective time
3307
3308
 
3308
3309
  Returns
@@ -3342,19 +3343,19 @@ class FeedbackManager(Client):
3342
3343
  detailed_response: bool = False,
3343
3344
  ) -> dict | str:
3344
3345
  """
3345
- Return the informal tag for the supplied unique identifier (tagGUID).
3346
+ Return the informal tag for the supplied unique identifier (tag_guid).
3346
3347
 
3347
3348
  Parameters
3348
3349
  ----------
3349
- serverName
3350
+ server_name
3350
3351
  - name of the server instances for this request.
3351
- tagGUID
3352
+ tag_guid
3352
3353
  - unique identifier of the meaning.
3353
- viewServiceURLMarker
3354
- - optional view service URL marker (overrides accessServiceURLMarker)
3355
- accessServiceURLMarker
3354
+ view_service_url_marker
3355
+ - optional view service URL marker (overrides access_service_url_marker)
3356
+ access_service_url_marker
3356
3357
  - optional access service URL marker used to identify which back end service to call
3357
- requestBody
3358
+ body
3358
3359
  - optional effective time
3359
3360
 
3360
3361
  Returns
@@ -3401,17 +3402,17 @@ class FeedbackManager(Client):
3401
3402
 
3402
3403
  Parameters
3403
3404
  ----------
3404
- serverName
3405
+ server_name
3405
3406
  - name of the server instances for this request.
3406
- requestBody
3407
+ body
3407
3408
  - name of tag.
3408
- startFrom
3409
+ start_from
3409
3410
  - index of the list to start from (0 for start).
3410
- pageSize
3411
+ page_size
3411
3412
  - maximum number of elements to return.
3412
- viewServiceURLMarker
3413
- - optional view service URL marker (overrides accessServiceURLMarker)
3414
- accessServiceURLMarker
3413
+ view_service_url_marker
3414
+ - optional view service URL marker (overrides access_service_url_marker)
3415
+ access_service_url_marker
3415
3416
  - optional access service URL marker used to identify which back end service to call
3416
3417
 
3417
3418
  Returns
@@ -3458,17 +3459,17 @@ class FeedbackManager(Client):
3458
3459
 
3459
3460
  Parameters
3460
3461
  ----------
3461
- serverName
3462
+ server_name
3462
3463
  - name of the server instances for this request.
3463
- requestBody
3464
+ body
3464
3465
  - name of tag.
3465
- startFrom
3466
+ start_from
3466
3467
  - index of the list to start from (0 for start).
3467
- pageSize
3468
+ page_size
3468
3469
  - maximum number of elements to return.
3469
- viewServiceURLMarker
3470
- - optional view service URL marker (overrides accessServiceURLMarker)
3471
- accessServiceURLMarker
3470
+ view_service_url_marker
3471
+ - optional view service URL marker (overrides access_service_url_marker)
3472
+ access_service_url_marker
3472
3473
  - optional access service URL marker used to identify which back end service to call
3473
3474
 
3474
3475
  Returns
@@ -3517,15 +3518,15 @@ class FeedbackManager(Client):
3517
3518
 
3518
3519
  Parameters
3519
3520
  ----------
3520
- commentGUID
3521
+ comment_guid
3521
3522
  - String - unique id for the comment object
3522
- serverName
3523
+ server_name
3523
3524
  - name of the server instances for this request
3524
- viewServiceURLMarker
3525
- - optional view service URL marker (overrides accessServiceURLMarker)
3526
- accessServiceURLMarker
3525
+ view_service_url_marker
3526
+ - optional view service URL marker (overrides access_service_url_marker)
3527
+ access_service_url_marker
3527
3528
  - optional access service URL marker used to identify which back end service to call
3528
- requestBody
3529
+ body
3529
3530
  - containing type of comment enum and the text of the comment.
3530
3531
 
3531
3532
  Returns
@@ -3569,15 +3570,15 @@ class FeedbackManager(Client):
3569
3570
 
3570
3571
  Parameters
3571
3572
  ----------
3572
- commentGUID
3573
+ comment_guid
3573
3574
  - String - unique id for the comment object
3574
- serverName
3575
+ server_name
3575
3576
  - name of the server instances for this request
3576
- viewServiceURLMarker
3577
- - optional view service URL marker (overrides accessServiceURLMarker)
3578
- accessServiceURLMarker
3577
+ view_service_url_marker
3578
+ - optional view service URL marker (overrides access_service_url_marker)
3579
+ access_service_url_marker
3579
3580
  - optional access service URL marker used to identify which back end service to call
3580
- requestBody
3581
+ body
3581
3582
  - containing type of comment enum and the text of the comment.
3582
3583
 
3583
3584
  Returns
@@ -3622,15 +3623,15 @@ class FeedbackManager(Client):
3622
3623
 
3623
3624
  Parameters
3624
3625
  ----------
3625
- serverName
3626
+ server_name
3626
3627
  - name of the server instances for this request.
3627
- elementGUID
3628
+ element_guid
3628
3629
  - unique identifier for the element where the like is attached.
3629
- viewServiceURLMarker
3630
- - optional view service URL marker (overrides accessServiceURLMarker)
3631
- accessServiceURLMarker
3630
+ view_service_url_marker
3631
+ - optional view service URL marker (overrides access_service_url_marker)
3632
+ access_service_url_marker
3632
3633
  - optional access service URL marker used to identify which back end service to call
3633
- requestBody
3634
+ body
3634
3635
  - containing type of comment enum and the text of the comment.
3635
3636
 
3636
3637
  Returns
@@ -3672,15 +3673,15 @@ class FeedbackManager(Client):
3672
3673
 
3673
3674
  Parameters
3674
3675
  ----------
3675
- serverName
3676
+ server_name
3676
3677
  - name of the server instances for this request.
3677
- elementGUID
3678
+ element_guid
3678
3679
  - unique identifier for the element where the like is attached.
3679
- viewServiceURLMarker
3680
- - optional view service URL marker (overrides accessServiceURLMarker)
3681
- accessServiceURLMarker
3680
+ view_service_url_marker
3681
+ - optional view service URL marker (overrides access_service_url_marker)
3682
+ access_service_url_marker
3682
3683
  - optional access service URL marker used to identify which back end service to call
3683
- requestBody
3684
+ body
3684
3685
  - containing type of comment enum and the text of the comment.
3685
3686
 
3686
3687
  Returns
@@ -3727,15 +3728,15 @@ class FeedbackManager(Client):
3727
3728
 
3728
3729
  Parameters
3729
3730
  ----------
3730
- serverName
3731
+ server_name
3731
3732
  - name of the server instances for this request
3732
- noteGUID
3733
+ note_guid
3733
3734
  - unique id for the note .
3734
- viewServiceURLMarker
3735
- - optional view service URL marker (overrides accessServiceURLMarker)
3736
- accessServiceURLMarker
3735
+ view_service_url_marker
3736
+ - optional view service URL marker (overrides access_service_url_marker)
3737
+ access_service_url_marker
3737
3738
  - optional access service URL marker used to identify which back end service to call
3738
- requestBody
3739
+ body
3739
3740
  - null request body.
3740
3741
 
3741
3742
 
@@ -3780,15 +3781,15 @@ class FeedbackManager(Client):
3780
3781
 
3781
3782
  Parameters
3782
3783
  ----------
3783
- noteGUID
3784
+ note_guid
3784
3785
  - unique id for the note .
3785
- serverName
3786
+ server_name
3786
3787
  - name of the server instances for this request
3787
- requestBody
3788
+ body
3788
3789
  - null request body.
3789
- viewServiceURLMarker
3790
- - optional view service URL marker (overrides accessServiceURLMarker)
3791
- accessServiceURLMarker
3790
+ view_service_url_marker
3791
+ - optional view service URL marker (overrides access_service_url_marker)
3792
+ access_service_url_marker
3792
3793
  - optional access service URL marker used to identify which back end service to call
3793
3794
 
3794
3795
 
@@ -3836,15 +3837,15 @@ class FeedbackManager(Client):
3836
3837
 
3837
3838
  Parameters
3838
3839
  ----------
3839
- noteLogGUID
3840
+ note_log_guid
3840
3841
  - unique id for the note log.
3841
- serverName
3842
+ server_name
3842
3843
  - name of the server instances for this request
3843
- requestBody
3844
+ body
3844
3845
  - null request body.
3845
- viewServiceURLMarker
3846
- - optional view service URL marker (overrides accessServiceURLMarker)
3847
- accessServiceURLMarker
3846
+ view_service_url_marker
3847
+ - optional view service URL marker (overrides access_service_url_marker)
3848
+ access_service_url_marker
3848
3849
  - optional access service URL marker used to identify which back end service to call
3849
3850
 
3850
3851
  Returns
@@ -3888,15 +3889,15 @@ class FeedbackManager(Client):
3888
3889
 
3889
3890
  Parameters
3890
3891
  ----------
3891
- noteLogGUID
3892
+ note_log_guid
3892
3893
  - unique id for the note log.
3893
- serverName
3894
+ server_name
3894
3895
  - name of the server instances for this request
3895
- requestBody
3896
+ body
3896
3897
  - null request body.
3897
- viewServiceURLMarker
3898
- - optional view service URL marker (overrides accessServiceURLMarker)
3899
- accessServiceURLMarker
3898
+ view_service_url_marker
3899
+ - optional view service URL marker (overrides access_service_url_marker)
3900
+ access_service_url_marker
3900
3901
  - optional access service URL marker used to identify which back end service to call
3901
3902
 
3902
3903
  Returns
@@ -3941,15 +3942,15 @@ class FeedbackManager(Client):
3941
3942
 
3942
3943
  Parameters
3943
3944
  ----------
3944
- serverName
3945
+ server_name
3945
3946
  - name of the server instances for this request.
3946
- elementGUID
3947
+ element_guid
3947
3948
  - unique identifier for the element where the rating is attached.
3948
- viewServiceURLMarker
3949
- - optional view service URL marker (overrides accessServiceURLMarker)
3950
- accessServiceURLMarker
3949
+ view_service_url_marker
3950
+ - optional view service URL marker (overrides access_service_url_marker)
3951
+ access_service_url_marker
3951
3952
  - optional access service URL marker used to identify which back end service to call
3952
- requestBody
3953
+ body
3953
3954
  - containing type of comment enum and the text of the comment.
3954
3955
 
3955
3956
  Returns
@@ -3991,15 +3992,15 @@ class FeedbackManager(Client):
3991
3992
 
3992
3993
  Parameters
3993
3994
  ----------
3994
- serverName
3995
+ server_name
3995
3996
  - name of the server instances for this request.
3996
- elementGUID
3997
+ element_guid
3997
3998
  - unique identifier for the element where the rating is attached.
3998
- viewServiceURLMarker
3999
- - optional view service URL marker (overrides accessServiceURLMarker)
4000
- accessServiceURLMarker
3999
+ view_service_url_marker
4000
+ - optional view service URL marker (overrides access_service_url_marker)
4001
+ access_service_url_marker
4001
4002
  - optional access service URL marker used to identify which back end service to call
4002
- requestBody
4003
+ body
4003
4004
  - containing type of comment enum and the text of the comment.
4004
4005
 
4005
4006
  Returns
@@ -4046,17 +4047,17 @@ class FeedbackManager(Client):
4046
4047
 
4047
4048
  Parameters
4048
4049
  ----------
4049
- serverName
4050
+ server_name
4050
4051
  - name of the server instances for this request.
4051
- elementGUID
4052
+ element_guid
4052
4053
  - unique id for the element.
4053
- tagGUID
4054
+ tag_guid
4054
4055
  - unique id of the tag.
4055
- viewServiceURLMarker
4056
- - optional view service URL marker (overrides accessServiceURLMarker)
4057
- accessServiceURLMarker
4056
+ view_service_url_marker
4057
+ - optional view service URL marker (overrides access_service_url_marker)
4058
+ access_service_url_marker
4058
4059
  - optional access service URL marker used to identify which back end service to call
4059
- requestBody
4060
+ body
4060
4061
  - null request body needed for correct protocol exchange.
4061
4062
 
4062
4063
  Returns
@@ -4100,17 +4101,17 @@ class FeedbackManager(Client):
4100
4101
 
4101
4102
  Parameters
4102
4103
  ----------
4103
- elementGUID
4104
+ element_guid
4104
4105
  - unique id for the element.
4105
- tagGUID
4106
+ tag_guid
4106
4107
  - unique id of the tag.
4107
- serverName
4108
+ server_name
4108
4109
  - name of the server instances for this request.
4109
- viewServiceURLMarker
4110
- - optional view service URL marker (overrides accessServiceURLMarker)
4111
- accessServiceURLMarker
4110
+ view_service_url_marker
4111
+ - optional view service URL marker (overrides access_service_url_marker)
4112
+ access_service_url_marker
4112
4113
  - optional access service URL marker used to identify which back end service to call
4113
- requestBody
4114
+ body
4114
4115
  - null request body needed for correct protocol exchange.
4115
4116
 
4116
4117
  Returns
@@ -4158,19 +4159,19 @@ class FeedbackManager(Client):
4158
4159
 
4159
4160
  Parameters
4160
4161
  ----------
4161
- serverName
4162
+ server_name
4162
4163
  - name of the server to route the request to
4163
- questionCommentGUID
4164
+ question_comment_guid
4164
4165
  - unique identifier of the comment containing the question
4165
- answerCommentGUID
4166
+ answer_comment_guid
4166
4167
  - unique identifier of the comment containing the accepted answer
4167
- isPublic
4168
+ is_public
4168
4169
  - is this visible to other people
4169
- viewServiceURLMarker
4170
- - optional view service URL marker (overrides accessServiceURLMarker)
4171
- accessServiceURLMarker
4170
+ view_service_url_marker
4171
+ - optional view service URL marker (overrides access_service_url_marker)
4172
+ access_service_url_marker
4172
4173
  - optional access service URL marker used to identify which back end service to call
4173
- requestBody
4174
+ body
4174
4175
  - properties to help with the mapping of the elements in the external asset manager and open metadata
4175
4176
 
4176
4177
  Returns
@@ -4215,19 +4216,19 @@ class FeedbackManager(Client):
4215
4216
 
4216
4217
  Parameters
4217
4218
  ----------
4218
- serverName
4219
+ server_name
4219
4220
  - name of the server to route the request to
4220
- questionCommentGUID
4221
+ question_comment_guid
4221
4222
  - unique identifier of the comment containing the question
4222
- answerCommentGUID
4223
+ answer_comment_guid
4223
4224
  - unique identifier of the comment containing the accepted answer
4224
- isPublic
4225
+ is_public
4225
4226
  - is this visible to other people
4226
- viewServiceURLMarker
4227
- - optional view service URL marker (overrides accessServiceURLMarker)
4228
- accessServiceURLMarker
4227
+ view_service_url_marker
4228
+ - optional view service URL marker (overrides access_service_url_marker)
4229
+ access_service_url_marker
4229
4230
  - optional access service URL marker used to identify which back end service to call
4230
- requestBody
4231
+ body
4231
4232
  - properties to help with the mapping of the elements in the external asset manager and open metadata
4232
4233
 
4233
4234
  Returns
@@ -4275,17 +4276,17 @@ class FeedbackManager(Client):
4275
4276
 
4276
4277
  Parameters
4277
4278
  ----------
4278
- commentGUID
4279
+ comment_guid
4279
4280
  - unique identifier for the comment to change.
4280
4281
  body
4281
4282
  - containing type of comment enum and the text of the comment.
4282
- serverName
4283
+ server_name
4283
4284
  - name of the server instances for this request.
4284
- isMergeUpdate
4285
+ is_merge_update
4285
4286
  - should the new properties be merged with existing properties (true) or completely replace them (false)?
4286
- viewServiceURLMarker
4287
- - optional view service URL marker (overrides accessServiceURLMarker)
4288
- accessServiceURLMarker
4287
+ view_service_url_marker
4288
+ - optional view service URL marker (overrides access_service_url_marker)
4289
+ access_service_url_marker
4289
4290
  - optional access service URL marker used to identify which back end service to call
4290
4291
 
4291
4292
  Returns
@@ -4329,17 +4330,17 @@ class FeedbackManager(Client):
4329
4330
 
4330
4331
  Parameters
4331
4332
  ----------
4332
- commentGUID
4333
+ comment_guid
4333
4334
  - unique identifier for the comment to change.
4334
4335
  body
4335
4336
  - containing type of comment enum and the text of the comment.
4336
- serverName
4337
+ server_name
4337
4338
  - name of the server instances for this request.
4338
- isMergeUpdate
4339
+ is_merge_update
4339
4340
  - should the new properties be merged with existing properties (true) or completely replace them (false)?
4340
- viewServiceURLMarker
4341
- - optional view service URL marker (overrides accessServiceURLMarker)
4342
- accessServiceURLMarker
4341
+ view_service_url_marker
4342
+ - optional view service URL marker (overrides access_service_url_marker)
4343
+ access_service_url_marker
4343
4344
  - optional access service URL marker used to identify which back end service to call
4344
4345
 
4345
4346
  Returns
@@ -4387,17 +4388,17 @@ class FeedbackManager(Client):
4387
4388
 
4388
4389
  Parameters
4389
4390
  ----------
4390
- serverName
4391
+ server_name
4391
4392
  - name of the server instances for this request.
4392
- commentGUID
4393
+ comment_guid
4393
4394
  - unique identifier for the comment to change.
4394
- isPublic
4395
+ is_public
4395
4396
  - is this visible to other people
4396
- viewServiceURLMarker
4397
- - optional view service URL marker (overrides accessServiceURLMarker)
4398
- accessServiceURLMarker
4397
+ view_service_url_marker
4398
+ - optional view service URL marker (overrides access_service_url_marker)
4399
+ access_service_url_marker
4399
4400
  - optional access service URL marker used to identify which back end service to call
4400
- requestBody
4401
+ body
4401
4402
  - containing type of comment enum and the text of the comment.
4402
4403
 
4403
4404
  Returns
@@ -4442,17 +4443,17 @@ class FeedbackManager(Client):
4442
4443
 
4443
4444
  Parameters
4444
4445
  ----------
4445
- serverName
4446
+ server_name
4446
4447
  - name of the server instances for this request.
4447
- commentGUID
4448
+ comment_guid
4448
4449
  - unique identifier for the comment to change.
4449
- isPublic
4450
+ is_public
4450
4451
  - is this visible to other people
4451
- viewServiceURLMarker
4452
- - optional view service URL marker (overrides accessServiceURLMarker)
4453
- accessServiceURLMarker
4452
+ view_service_url_marker
4453
+ - optional view service URL marker (overrides access_service_url_marker)
4454
+ access_service_url_marker
4454
4455
  - optional access service URL marker used to identify which back end service to call
4455
- requestBody
4456
+ body
4456
4457
  - containing type of comment enum and the text of the comment.
4457
4458
 
4458
4459
  Returns
@@ -4500,17 +4501,17 @@ class FeedbackManager(Client):
4500
4501
 
4501
4502
  Parameters
4502
4503
  ----------
4503
- serverName
4504
+ server_name
4504
4505
  - name of the server instances for this request.
4505
- noteGUID
4506
+ note_guid
4506
4507
  - unique identifier for the note to change.
4507
- isMergeUpdate
4508
+ is_merge_update
4508
4509
  - should the new properties be merged with existing properties (true) or completely replace them (false)?
4509
- viewServiceURLMarker
4510
- - optional view service URL marker (overrides accessServiceURLMarker)
4511
- accessServiceURLMarker
4510
+ view_service_url_marker
4511
+ - optional view service URL marker (overrides access_service_url_marker)
4512
+ access_service_url_marker
4512
4513
  - optional access service URL marker used to identify which back end service to call
4513
- requestBody
4514
+ body
4514
4515
  - containing type of comment enum and the text of the comment.
4515
4516
 
4516
4517
  Returns
@@ -4554,17 +4555,17 @@ class FeedbackManager(Client):
4554
4555
 
4555
4556
  Parameters
4556
4557
  ----------
4557
- serverName
4558
+ server_name
4558
4559
  - name of the server instances for this request.
4559
- noteGUID
4560
+ note_guid
4560
4561
  - unique identifier for the note to change.
4561
- isMergeUpdate
4562
+ is_merge_update
4562
4563
  - should the new properties be merged with existing properties (true) or completely replace them (false)?
4563
- viewServiceURLMarker
4564
- - optional view service URL marker (overrides accessServiceURLMarker)
4565
- accessServiceURLMarker
4564
+ view_service_url_marker
4565
+ - optional view service URL marker (overrides access_service_url_marker)
4566
+ access_service_url_marker
4566
4567
  - optional access service URL marker used to identify which back end service to call
4567
- requestBody
4568
+ body
4568
4569
  - containing type of comment enum and the text of the comment.
4569
4570
 
4570
4571
  Returns
@@ -4611,17 +4612,17 @@ class FeedbackManager(Client):
4611
4612
 
4612
4613
  Parameters
4613
4614
  ----------
4614
- noteLogGUID
4615
+ note_log_guid
4615
4616
  - unique identifier for the note log to change.
4616
4617
  body
4617
4618
  - containing type of comment enum and the text of the comment.
4618
- serverName
4619
+ server_name
4619
4620
  - name of the server instances for this request.
4620
- isMergeUpdate
4621
+ is_merge_update
4621
4622
  - should the new properties be merged with existing properties (true) or completely replace them (false)?
4622
- viewServiceURLMarker
4623
- - optional view service URL marker (overrides accessServiceURLMarker)
4624
- accessServiceURLMarker
4623
+ view_service_url_marker
4624
+ - optional view service URL marker (overrides access_service_url_marker)
4625
+ access_service_url_marker
4625
4626
  - optional access service URL marker used to identify which back end service to call
4626
4627
 
4627
4628
  Returns
@@ -4665,17 +4666,17 @@ class FeedbackManager(Client):
4665
4666
 
4666
4667
  Parameters
4667
4668
  ----------
4668
- noteLogGUID
4669
+ note_log_guid
4669
4670
  - unique identifier for the note log to change.
4670
4671
  body
4671
4672
  - containing type of comment enum and the text of the comment.
4672
- serverName
4673
+ server_name
4673
4674
  - name of the server instances for this request.
4674
- isMergeUpdate
4675
+ is_merge_update
4675
4676
  - should the new properties be merged with existing properties (true) or completely replace them (false)?
4676
- viewServiceURLMarker
4677
- - optional view service URL marker (overrides accessServiceURLMarker)
4678
- accessServiceURLMarker
4677
+ view_service_url_marker
4678
+ - optional view service URL marker (overrides access_service_url_marker)
4679
+ access_service_url_marker
4679
4680
  - optional access service URL marker used to identify which back end service to call
4680
4681
 
4681
4682
  Returns
@@ -4721,15 +4722,15 @@ class FeedbackManager(Client):
4721
4722
 
4722
4723
  Parameters
4723
4724
  ----------
4724
- serverName
4725
+ server_name
4725
4726
  - name of the server instances for this request
4726
- tagGUID
4727
+ tag_guid
4727
4728
  - unique id for the tag
4728
- viewServiceURLMarker
4729
- - optional view service URL marker (overrides accessServiceURLMarker)
4730
- accessServiceURLMarker
4729
+ view_service_url_marker
4730
+ - optional view service URL marker (overrides access_service_url_marker)
4731
+ access_service_url_marker
4731
4732
  - optional access service URL marker used to identify which back end service to call
4732
- requestBody - contains the name of the tag and (optional) description of the tag.
4733
+ body - contains the name of the tag and (optional) description of the tag.
4733
4734
 
4734
4735
  Returns
4735
4736
  -------
@@ -4772,15 +4773,15 @@ class FeedbackManager(Client):
4772
4773
 
4773
4774
  Parameters
4774
4775
  ----------
4775
- serverName
4776
+ server_name
4776
4777
  - name of the server instances for this request
4777
- tagGUID
4778
+ tag_guid
4778
4779
  - unique id for the tag
4779
- viewServiceURLMarker
4780
- - optional view service URL marker (overrides accessServiceURLMarker)
4781
- accessServiceURLMarker
4780
+ view_service_url_marker
4781
+ - optional view service URL marker (overrides access_service_url_marker)
4782
+ access_service_url_marker
4782
4783
  - optional access service URL marker used to identify which back end service to call
4783
- requestBody - contains the name of the tag and (optional) description of the tag.
4784
+ body - contains the name of the tag and (optional) description of the tag.
4784
4785
 
4785
4786
  Returns
4786
4787
  -------