pyxecm 2.0.3__py3-none-any.whl → 2.0.4__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.
Potentially problematic release.
This version of pyxecm might be problematic. Click here for more details.
- pyxecm/coreshare.py +71 -5
- pyxecm/customizer/api/app.py +5 -11
- pyxecm/customizer/api/common/payload_list.py +39 -10
- pyxecm/customizer/api/common/router.py +8 -6
- pyxecm/customizer/api/settings.py +9 -0
- pyxecm/customizer/api/v1_otcs/router.py +16 -6
- pyxecm/customizer/payload.py +109 -73
- pyxecm/customizer/translate.py +14 -10
- pyxecm/helper/data.py +12 -20
- pyxecm/maintenance_page/app.py +6 -2
- pyxecm/otcs.py +1947 -228
- pyxecm/otds.py +3 -11
- {pyxecm-2.0.3.dist-info → pyxecm-2.0.4.dist-info}/METADATA +1 -1
- {pyxecm-2.0.3.dist-info → pyxecm-2.0.4.dist-info}/RECORD +17 -17
- {pyxecm-2.0.3.dist-info → pyxecm-2.0.4.dist-info}/WHEEL +0 -0
- {pyxecm-2.0.3.dist-info → pyxecm-2.0.4.dist-info}/licenses/LICENSE +0 -0
- {pyxecm-2.0.3.dist-info → pyxecm-2.0.4.dist-info}/top_level.txt +0 -0
pyxecm/otds.py
CHANGED
|
@@ -1432,7 +1432,7 @@ class OTDS:
|
|
|
1432
1432
|
Filters such as user state, location, etc. can be applied.
|
|
1433
1433
|
|
|
1434
1434
|
Returning a generator avoids loading a large number of nodes into memory at once. Instead you
|
|
1435
|
-
can iterate over the potential large list of
|
|
1435
|
+
can iterate over the potential large list of OTDS users.
|
|
1436
1436
|
|
|
1437
1437
|
Example usage:
|
|
1438
1438
|
users = otds_object.get_users_iterator(partition="Content Server Members", page_size=10)
|
|
@@ -1453,10 +1453,6 @@ class OTDS:
|
|
|
1453
1453
|
page_size (int, optional):
|
|
1454
1454
|
The chunk size for the number of users returned by one
|
|
1455
1455
|
REST API call. If None, then a default of 250 is used.
|
|
1456
|
-
next_page_cookie (str, optional):
|
|
1457
|
-
A key returned by a former call to this method in with
|
|
1458
|
-
a return key 'nextPageCookie' (see example below). This
|
|
1459
|
-
can be used to get the next page of result items.
|
|
1460
1456
|
|
|
1461
1457
|
Returns:
|
|
1462
1458
|
iter:
|
|
@@ -1929,7 +1925,7 @@ class OTDS:
|
|
|
1929
1925
|
"""Get an iterator object that can be used to traverse all groups for a given users partition.
|
|
1930
1926
|
|
|
1931
1927
|
Returning a generator avoids loading a large number of nodes into memory at once. Instead you
|
|
1932
|
-
can iterate over the potential large list of
|
|
1928
|
+
can iterate over the potential large list of OTDS groups.
|
|
1933
1929
|
|
|
1934
1930
|
Example usage:
|
|
1935
1931
|
groups = otds_object.get_groups_iterator(partition="Content Server Members", page_size=10)
|
|
@@ -1944,13 +1940,9 @@ class OTDS:
|
|
|
1944
1940
|
If None, no filtering applies.
|
|
1945
1941
|
where_location (str | None, optional):
|
|
1946
1942
|
Filter based on the DN of the Organizational Unit.
|
|
1947
|
-
page_size (int, optional):
|
|
1943
|
+
page_size (int | None, optional):
|
|
1948
1944
|
The chunk size for the number of groups returned by one
|
|
1949
1945
|
REST API call. If None, then a default of 250 is used.
|
|
1950
|
-
next_page_cookie (str, optional):
|
|
1951
|
-
A key returned by a former call to this method in with
|
|
1952
|
-
a return key 'nextPageCookie' (see example below). This
|
|
1953
|
-
can be used to get the next page of result items.
|
|
1954
1946
|
|
|
1955
1947
|
Returns:
|
|
1956
1948
|
iter:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyxecm
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.4
|
|
4
4
|
Summary: A Python library to interact with Opentext Extended ECM REST API
|
|
5
5
|
Author-email: Kai Gatzweiler <kgatzweiler@opentext.com>, "Dr. Marc Diefenbruch" <mdiefenb@opentext.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/opentext/pyxecm
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
pyxecm/__init__.py,sha256=KNvTFbDVHylf8Ub28osm5Dw0W-ck-94y27lIBuE32RE,441
|
|
2
2
|
pyxecm/avts.py,sha256=J-W7JYrYv7JSI9whZ5iCHtim6vNrTZCXa1oizUWIc0Y,56952
|
|
3
|
-
pyxecm/coreshare.py,sha256=
|
|
3
|
+
pyxecm/coreshare.py,sha256=tq-1Qh-Yzqb_DVvWKK-cln7LqWtdU9y1rUjr5mIE96c,95790
|
|
4
4
|
pyxecm/otac.py,sha256=gXoZc-mkI1XoR_mPmDy3up58C1mTYf76rOaSsC4xOHg,22847
|
|
5
5
|
pyxecm/otawp.py,sha256=JA4LGvbqRvXxc7-7pE1YSLO5JxI3rr9rJdMmuUItrNM,112890
|
|
6
6
|
pyxecm/otca.py,sha256=BiX7CBkr8necC8LEFEAEcqsmtbDaXCiMHXBHfrIIJK0,25470
|
|
7
|
-
pyxecm/otcs.py,sha256=
|
|
8
|
-
pyxecm/otds.py,sha256=
|
|
7
|
+
pyxecm/otcs.py,sha256=zsv1NlIHpQglNzDywbxYS6v66bDDD9-dCjfTqOuKDkc,670149
|
|
8
|
+
pyxecm/otds.py,sha256=HfsHnOR8RvfrVtnXXDLKmvykjaKMREkOwoJZjjzjsMU,184218
|
|
9
9
|
pyxecm/otiv.py,sha256=I5lt4sz7TN3W7BCstCKQY2WQnei-t0tXdM4QjRQRmWI,2358
|
|
10
10
|
pyxecm/otkd.py,sha256=JMpUa99vtTK7PfCnMJjt6lUyK6C6Aq1i1zjMROI9cvQ,47480
|
|
11
11
|
pyxecm/otmm.py,sha256=ryH1Q9yHDXlZ6ytBMe8Z0tJaT8S7S80JaZdNIsPHmO0,80797
|
|
@@ -21,18 +21,18 @@ pyxecm/customizer/log.py,sha256=N-EZc822AYWniUb3PCQ8vPZ9ki61ZzMfSprdTDP-jKY,3015
|
|
|
21
21
|
pyxecm/customizer/m365.py,sha256=nq-90A2gMn2BxeFfqHtXxRmI5FVc6Iv3GV-09izD__U,213366
|
|
22
22
|
pyxecm/customizer/nhc.py,sha256=Yu2t0lc3CUqpDeZ4RWTNZCsNRz9hG4Bx8-p21ZLYRHM,45647
|
|
23
23
|
pyxecm/customizer/openapi.py,sha256=dI5YQzxBVVeT0TWMzEfOxyPAnM4fAsBt3F1MrAK9jLg,7161
|
|
24
|
-
pyxecm/customizer/payload.py,sha256=
|
|
24
|
+
pyxecm/customizer/payload.py,sha256=T4pJsfM0RVQ2bnpwH0rKZifV-27mGn_wawQZN1Xm2-c,1309221
|
|
25
25
|
pyxecm/customizer/pht.py,sha256=CSWHdmR--oNQ7fCRVK0XzAEUIelmmsyuzE5nr0_2-gI,48083
|
|
26
26
|
pyxecm/customizer/salesforce.py,sha256=MB_8mDUikettUGQpcuG19QQyeNjxq1Z0BF6asQGkgZ8,63518
|
|
27
27
|
pyxecm/customizer/sap.py,sha256=4smnL-epWe9tVrPI7AK1lVUqaEAbyphPWeExV7UfOfc,6388
|
|
28
28
|
pyxecm/customizer/servicenow.py,sha256=3eUKtfPEYpT03Mg2phkG41jpJJsa6uiX3AcPyuw0tCI,65373
|
|
29
29
|
pyxecm/customizer/settings.py,sha256=wzp5rud6o6s4s61RPkfRPXLlfdZmbi6WEQMk6eEwWZw,21284
|
|
30
30
|
pyxecm/customizer/successfactors.py,sha256=iRoOCiZ9NXSGCzpxViavQKPrHAU1PxMvh7gK8mpRY8o,38299
|
|
31
|
-
pyxecm/customizer/translate.py,sha256=
|
|
31
|
+
pyxecm/customizer/translate.py,sha256=9BTAa86nk_2kcUivw7aIxiMWtPc-oe7Hasgd9_DdWqM,4958
|
|
32
32
|
pyxecm/customizer/api/__init__.py,sha256=8oXxEEFSu2afpyQURpxMA2qTZAB3MUdbBrndogDn5Oc,92
|
|
33
33
|
pyxecm/customizer/api/__main__.py,sha256=0DvtXJUeOOvpRfcq67CZ0HhE5gI4vLD1UTCAfNXQrT4,128
|
|
34
|
-
pyxecm/customizer/api/app.py,sha256=
|
|
35
|
-
pyxecm/customizer/api/settings.py,sha256=
|
|
34
|
+
pyxecm/customizer/api/app.py,sha256=jz2kWs1LB-82HZdFROWDki3DHmaW1NTdewjn9lUXHnY,5119
|
|
35
|
+
pyxecm/customizer/api/settings.py,sha256=QZIDH-bRDc7E2L1cBnQUGXmjDhMGbkjlLh2yH4ZMz2c,5315
|
|
36
36
|
pyxecm/customizer/api/auth/__init__.py,sha256=ranS8DEliiC4Mlo-bVva9Maj5q08I0I6NJflUFIvOvw,19
|
|
37
37
|
pyxecm/customizer/api/auth/functions.py,sha256=gHxGnm0ehF0ysyMLftPQZV6a79CxGtmaXryTJjF7Miw,3092
|
|
38
38
|
pyxecm/customizer/api/auth/models.py,sha256=lKebaIHbALZ10quCCKQ3wf7w8V6k84tFXcPV1zbQsS0,271
|
|
@@ -41,8 +41,8 @@ pyxecm/customizer/api/common/__init__.py,sha256=ranS8DEliiC4Mlo-bVva9Maj5q08I0I6
|
|
|
41
41
|
pyxecm/customizer/api/common/functions.py,sha256=OUelyeN476ABu8nLL3hNsJ5qFm6kRpJb-2LLG8s1y_I,2644
|
|
42
42
|
pyxecm/customizer/api/common/metrics.py,sha256=bJxXqExijgunlGj-WXkuaJKFNkewChL4j790U5q28ic,2719
|
|
43
43
|
pyxecm/customizer/api/common/models.py,sha256=c76ysWUt40A875DirsFMXttxwjHvBYvjuOVEXePSZ9k,456
|
|
44
|
-
pyxecm/customizer/api/common/payload_list.py,sha256=
|
|
45
|
-
pyxecm/customizer/api/common/router.py,sha256=
|
|
44
|
+
pyxecm/customizer/api/common/payload_list.py,sha256=DATiXUd-VyIpa3piJN4kQ0Xh7CrALInlUY7KH0Prm7A,29625
|
|
45
|
+
pyxecm/customizer/api/common/router.py,sha256=k2HqlGg63DjolW32VCQ2tQagLLGlgxVcY-IFUCAfQp8,3640
|
|
46
46
|
pyxecm/customizer/api/terminal/__init__.py,sha256=RHlTzdGeOY0_dvvNZS_wq6uJcY1OatIUHwCxAUwklaE,43
|
|
47
47
|
pyxecm/customizer/api/terminal/router.py,sha256=sJG85uKGxcK2XH0oP0xPVAAEdB46Jr21WJ1ruaMsnGc,3592
|
|
48
48
|
pyxecm/customizer/api/v1_csai/__init__.py,sha256=ranS8DEliiC4Mlo-bVva9Maj5q08I0I6NJflUFIvOvw,19
|
|
@@ -54,25 +54,25 @@ pyxecm/customizer/api/v1_maintenance/models.py,sha256=HcrhBg9hhRZg4Y6xuus9T8SCNI
|
|
|
54
54
|
pyxecm/customizer/api/v1_maintenance/router.py,sha256=otGuNCL20D-2SU4v9U_KEyoeUXXG98TcuLr4_9bdHH4,2304
|
|
55
55
|
pyxecm/customizer/api/v1_otcs/__init__.py,sha256=ranS8DEliiC4Mlo-bVva9Maj5q08I0I6NJflUFIvOvw,19
|
|
56
56
|
pyxecm/customizer/api/v1_otcs/functions.py,sha256=GipDzdz1xC_tMDXLcB40H9miL-OyQ-BAv4kGYbjb20s,1963
|
|
57
|
-
pyxecm/customizer/api/v1_otcs/router.py,sha256=
|
|
57
|
+
pyxecm/customizer/api/v1_otcs/router.py,sha256=V-3pXQ7iT_kE1kn9ipbaoAVuVMLY1xBAstPR3AzIDA4,7138
|
|
58
58
|
pyxecm/customizer/api/v1_payload/__init__.py,sha256=ranS8DEliiC4Mlo-bVva9Maj5q08I0I6NJflUFIvOvw,19
|
|
59
59
|
pyxecm/customizer/api/v1_payload/functions.py,sha256=lLu42v8lWT5BhogkreJI9UTHA7FnRWmFgk56_2RR2-Y,6162
|
|
60
60
|
pyxecm/customizer/api/v1_payload/models.py,sha256=eD9A2K23L_cGhBDTO1FGVGJMQ1COaYWmcr-ELE66tOA,1006
|
|
61
61
|
pyxecm/customizer/api/v1_payload/router.py,sha256=VQQff0KpZI3jgOkXi-z14GX5J_vZHMg3PF7wyCsnM0E,15573
|
|
62
62
|
pyxecm/helper/__init__.py,sha256=B35HdIZC9wZ1m_sx4NOPggyFFJoXmFuA1T2tuPDU1W8,246
|
|
63
63
|
pyxecm/helper/assoc.py,sha256=yOh4GFZEkTfIaVVrHBr4bhMtIv-E76oDVWGqaUdVqyA,7321
|
|
64
|
-
pyxecm/helper/data.py,sha256=
|
|
64
|
+
pyxecm/helper/data.py,sha256=LOU_efwJ1q_fAGuC9Lu_hn8iR5XYQH99mn6Sh0ipuIo,123311
|
|
65
65
|
pyxecm/helper/logadapter.py,sha256=ExrIKpA2JKegkTIky0wDDTgPYSvVmwQLrDh5jko_6hQ,724
|
|
66
66
|
pyxecm/helper/web.py,sha256=k010t9gzBflPxnxUdIGvulL69ASzdCEDY-UQ3JXQZ1w,13380
|
|
67
67
|
pyxecm/helper/xml.py,sha256=QhavLKGl_lwSasq1LF05ftj0OIVr04lyNE3bTqtemiA,45641
|
|
68
68
|
pyxecm/maintenance_page/__init__.py,sha256=09to4a8rygOIN6Z1SCN9tLtW1qPUC78Z-scDbpt0E-Q,136
|
|
69
69
|
pyxecm/maintenance_page/__main__.py,sha256=lFBgG3PkXz8ddYK_3wb376IoUAvpDEACVbrmx7xrFc8,158
|
|
70
|
-
pyxecm/maintenance_page/app.py,sha256=
|
|
70
|
+
pyxecm/maintenance_page/app.py,sha256=x3ttm_eLUg5G9Uqd6w9Go6ndOw96sY2mJOBLE7rJyXw,1862
|
|
71
71
|
pyxecm/maintenance_page/settings.py,sha256=VRReZeNdza7i7lgnQ3wVojzoPDGXZnzr5rsMJY1EnHk,955
|
|
72
72
|
pyxecm/maintenance_page/static/favicon.avif,sha256=POuuPXKbjHVP3BjNLpFIx8MfkQg5z2LZA7sK6lejARg,1543
|
|
73
73
|
pyxecm/maintenance_page/templates/maintenance.html,sha256=0OAinv7jmj3Aa7GNCIoBLDGEMW1-_HdJfwWmkmb6Cs4,5581
|
|
74
|
-
pyxecm-2.0.
|
|
75
|
-
pyxecm-2.0.
|
|
76
|
-
pyxecm-2.0.
|
|
77
|
-
pyxecm-2.0.
|
|
78
|
-
pyxecm-2.0.
|
|
74
|
+
pyxecm-2.0.4.dist-info/licenses/LICENSE,sha256=z5DWWd5cHmQYJnq4BDt1bmVQjuXY1Qsp6y0v5ETCw-s,11360
|
|
75
|
+
pyxecm-2.0.4.dist-info/METADATA,sha256=cYwASXInSlULoScKEWcM7TrRfq-ABvu8wRrX567c9gY,3869
|
|
76
|
+
pyxecm-2.0.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
77
|
+
pyxecm-2.0.4.dist-info/top_level.txt,sha256=TGak3_dYN67ugKFbmRxRG1leDyOt0T7dypjdX4Ij1WE,7
|
|
78
|
+
pyxecm-2.0.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|