crc-pulp-file-client 20251209.2__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 crc-pulp-file-client might be problematic. Click here for more details.

Files changed (62) hide show
  1. crc_pulp_file_client-20251209.2.dist-info/METADATA +8160 -0
  2. crc_pulp_file_client-20251209.2.dist-info/RECORD +62 -0
  3. crc_pulp_file_client-20251209.2.dist-info/WHEEL +5 -0
  4. crc_pulp_file_client-20251209.2.dist-info/top_level.txt +1 -0
  5. pulpcore/__init__.py +2 -0
  6. pulpcore/client/__init__.py +2 -0
  7. pulpcore/client/pulp_file/__init__.py +80 -0
  8. pulpcore/client/pulp_file/api/__init__.py +11 -0
  9. pulpcore/client/pulp_file/api/acs_file_api.py +3695 -0
  10. pulpcore/client/pulp_file/api/content_files_api.py +2472 -0
  11. pulpcore/client/pulp_file/api/distributions_file_api.py +4192 -0
  12. pulpcore/client/pulp_file/api/publications_file_api.py +2881 -0
  13. pulpcore/client/pulp_file/api/remotes_file_api.py +4220 -0
  14. pulpcore/client/pulp_file/api/repositories_file_api.py +4862 -0
  15. pulpcore/client/pulp_file/api/repositories_file_versions_api.py +1670 -0
  16. pulpcore/client/pulp_file/api_client.py +798 -0
  17. pulpcore/client/pulp_file/api_response.py +21 -0
  18. pulpcore/client/pulp_file/configuration.py +628 -0
  19. pulpcore/client/pulp_file/exceptions.py +200 -0
  20. pulpcore/client/pulp_file/models/__init__.py +57 -0
  21. pulpcore/client/pulp_file/models/async_operation_response.py +88 -0
  22. pulpcore/client/pulp_file/models/content_summary_response.py +92 -0
  23. pulpcore/client/pulp_file/models/file_content_upload_response.py +137 -0
  24. pulpcore/client/pulp_file/models/file_file_alternate_content_source.py +101 -0
  25. pulpcore/client/pulp_file/models/file_file_alternate_content_source_response.py +116 -0
  26. pulpcore/client/pulp_file/models/file_file_content_response.py +137 -0
  27. pulpcore/client/pulp_file/models/file_file_distribution.py +118 -0
  28. pulpcore/client/pulp_file/models/file_file_distribution_response.py +142 -0
  29. pulpcore/client/pulp_file/models/file_file_publication.py +100 -0
  30. pulpcore/client/pulp_file/models/file_file_publication_response.py +120 -0
  31. pulpcore/client/pulp_file/models/file_file_remote.py +205 -0
  32. pulpcore/client/pulp_file/models/file_file_remote_response.py +199 -0
  33. pulpcore/client/pulp_file/models/file_file_remote_response_hidden_fields_inner.py +90 -0
  34. pulpcore/client/pulp_file/models/file_file_repository.py +121 -0
  35. pulpcore/client/pulp_file/models/file_file_repository_response.py +146 -0
  36. pulpcore/client/pulp_file/models/my_permissions_response.py +88 -0
  37. pulpcore/client/pulp_file/models/nested_role.py +93 -0
  38. pulpcore/client/pulp_file/models/nested_role_response.py +92 -0
  39. pulpcore/client/pulp_file/models/object_roles_response.py +96 -0
  40. pulpcore/client/pulp_file/models/paginated_repository_version_response_list.py +112 -0
  41. pulpcore/client/pulp_file/models/paginatedfile_file_alternate_content_source_response_list.py +112 -0
  42. pulpcore/client/pulp_file/models/paginatedfile_file_content_response_list.py +112 -0
  43. pulpcore/client/pulp_file/models/paginatedfile_file_distribution_response_list.py +112 -0
  44. pulpcore/client/pulp_file/models/paginatedfile_file_publication_response_list.py +112 -0
  45. pulpcore/client/pulp_file/models/paginatedfile_file_remote_response_list.py +112 -0
  46. pulpcore/client/pulp_file/models/paginatedfile_file_repository_response_list.py +112 -0
  47. pulpcore/client/pulp_file/models/patchedfile_file_alternate_content_source.py +101 -0
  48. pulpcore/client/pulp_file/models/patchedfile_file_distribution.py +118 -0
  49. pulpcore/client/pulp_file/models/patchedfile_file_remote.py +205 -0
  50. pulpcore/client/pulp_file/models/patchedfile_file_repository.py +121 -0
  51. pulpcore/client/pulp_file/models/policy_enum.py +39 -0
  52. pulpcore/client/pulp_file/models/repair.py +88 -0
  53. pulpcore/client/pulp_file/models/repository_add_remove_content.py +93 -0
  54. pulpcore/client/pulp_file/models/repository_sync_url.py +90 -0
  55. pulpcore/client/pulp_file/models/repository_version_response.py +125 -0
  56. pulpcore/client/pulp_file/models/set_label.py +103 -0
  57. pulpcore/client/pulp_file/models/set_label_response.py +103 -0
  58. pulpcore/client/pulp_file/models/task_group_operation_response.py +88 -0
  59. pulpcore/client/pulp_file/models/unset_label.py +96 -0
  60. pulpcore/client/pulp_file/models/unset_label_response.py +100 -0
  61. pulpcore/client/pulp_file/py.typed +0 -0
  62. pulpcore/client/pulp_file/rest.py +258 -0
@@ -0,0 +1,62 @@
1
+ pulpcore/__init__.py,sha256=QDJyS5jtJnGFsSuOx43ZvLBCOrHImm8NrZk5f9URWdk,75
2
+ pulpcore/client/__init__.py,sha256=QDJyS5jtJnGFsSuOx43ZvLBCOrHImm8NrZk5f9URWdk,75
3
+ pulpcore/client/pulp_file/__init__.py,sha256=4Rbl80qIqbDGSI9m2eJ2RuwgIEyFo4JUY98zCJq2Txo,5547
4
+ pulpcore/client/pulp_file/api_client.py,sha256=gk7Helj51i6gD4bpLle3dsb-rDGsJrOP7V4i67U30Cc,27503
5
+ pulpcore/client/pulp_file/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
6
+ pulpcore/client/pulp_file/configuration.py,sha256=EKdGbCi2qmwZc6Sp1LCnKcoaFmkW0raMPj9fjkwTUuE,19677
7
+ pulpcore/client/pulp_file/exceptions.py,sha256=voqdIkPGpfNSUF9SsFqERflJMVs-uYFH60fd1rcsz6Y,5957
8
+ pulpcore/client/pulp_file/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ pulpcore/client/pulp_file/rest.py,sha256=yBnNFa7idpssXPW-DhmcSN3gyZaQO12tRqU6hWbwreY,9408
10
+ pulpcore/client/pulp_file/api/__init__.py,sha256=yy-Kaskj2XPpsU31HuA2pIzrbWJ8d6pCiUB084CtNvk,619
11
+ pulpcore/client/pulp_file/api/acs_file_api.py,sha256=mK5sMm6AUeETIvTKDWEG-tAK2YSlfBY99_tdY7n5daY,162855
12
+ pulpcore/client/pulp_file/api/content_files_api.py,sha256=wUJovQcQtjqMju2ohcy53vqPswx3it-bGMB74isVR4Y,118957
13
+ pulpcore/client/pulp_file/api/distributions_file_api.py,sha256=MkdxwOKDX9EUohmCODuG7AhbaXAH3PRF8gxPn2E3Itg,184965
14
+ pulpcore/client/pulp_file/api/publications_file_api.py,sha256=sAoh7fYiMkP6jhcilyXMrdaz6Pvhpcy2GxbsHQppmME,128882
15
+ pulpcore/client/pulp_file/api/remotes_file_api.py,sha256=bN96sJVtIKgZxgoRJScd5fB2_YY-VGKw-7pFgP85E4c,192695
16
+ pulpcore/client/pulp_file/api/repositories_file_api.py,sha256=BYHtHZ5efH4jrEEFmcqPu-ighHwSLsAHiQdFWyusAWw,214941
17
+ pulpcore/client/pulp_file/api/repositories_file_versions_api.py,sha256=nZRp4C7vaLyjlolEFPvv8ptGc5fxAKl7C0usR_6sq2k,78621
18
+ pulpcore/client/pulp_file/models/__init__.py,sha256=WGEIAfX5-ulQca9oxUyNJrfoSZbiW-gegoosIj3u_54,4328
19
+ pulpcore/client/pulp_file/models/async_operation_response.py,sha256=IbcgvoCxfMCL9HXaPJDPLgDo8IKE12QKstLIxzhegt8,2558
20
+ pulpcore/client/pulp_file/models/content_summary_response.py,sha256=lu9_HyGS1qnHpEQLJYe_e9rk9VGohiCNSI7mi7ZeobA,2714
21
+ pulpcore/client/pulp_file/models/file_content_upload_response.py,sha256=Nd8sEyXI6bNx1GsvoWRGq3NWDc_yjxw0zTSaDIQMQVo,5696
22
+ pulpcore/client/pulp_file/models/file_file_alternate_content_source.py,sha256=jsMQFKhWMZCvFIOmXwmQdi2U9NnVGm6NFiwTaMiBvW8,3544
23
+ pulpcore/client/pulp_file/models/file_file_alternate_content_source_response.py,sha256=uqInWOdMZSn6Nxh840xRF-0WHt3RB2Tp3h_gwNR8IWQ,4522
24
+ pulpcore/client/pulp_file/models/file_file_content_response.py,sha256=y96Bd1wKXcGLmRrlfvuFmVc2gE4w_93QKOseGBf_Zl0,5690
25
+ pulpcore/client/pulp_file/models/file_file_distribution.py,sha256=qPUzMFTCCZqvAYepNMl7MBFpyFc27A4YSQUqhg4U9Nk,4676
26
+ pulpcore/client/pulp_file/models/file_file_distribution_response.py,sha256=-91JAVb2-Xlm4mZDFjoiu9SSFvANqo8sjDKJrDAyOQM,6393
27
+ pulpcore/client/pulp_file/models/file_file_publication.py,sha256=u3U1g_WGZDei6_DTVz0LSVq54O1QnsXej3t_e5wyFBg,3439
28
+ pulpcore/client/pulp_file/models/file_file_publication_response.py,sha256=Pz7O-RouNYUWzLe6VGtAC55hLtMZVlKcsFfRUG4USnM,4791
29
+ pulpcore/client/pulp_file/models/file_file_remote.py,sha256=Os2UDIzhk0l3ksqbViWsnK8Mb4kTSX1m3E16V2GWsGY,11953
30
+ pulpcore/client/pulp_file/models/file_file_remote_response.py,sha256=T2wJHPtf43DwxYKMDbaYyMO3AGe-W9OXXiFh1BEkAWA,11251
31
+ pulpcore/client/pulp_file/models/file_file_remote_response_hidden_fields_inner.py,sha256=IKGVxnSiUd0tbbA6MZIWH-vOTVmhqrlPASmYxE6hfk8,2643
32
+ pulpcore/client/pulp_file/models/file_file_repository.py,sha256=P9TpWZtyofexYiOdxlEkooVJXLjCvamServUdBRWl1U,4990
33
+ pulpcore/client/pulp_file/models/file_file_repository_response.py,sha256=lrlC05sSSCNrNz2JIGoi3_iaKYex-MM4aIa4xMwlc74,6423
34
+ pulpcore/client/pulp_file/models/my_permissions_response.py,sha256=q5KI8WcrUykr38UGVLlque5b7NVMZFd7-Gy0exa-YK8,2519
35
+ pulpcore/client/pulp_file/models/nested_role.py,sha256=_QDbpC49ZywdkvKtd2vWnh9cxhct1kcHizHxQ1pIvH0,3003
36
+ pulpcore/client/pulp_file/models/nested_role_response.py,sha256=j3oDMZ6T7FdGcuOdhKM5VkAYn0aUbcF73675vaNDOxk,2874
37
+ pulpcore/client/pulp_file/models/object_roles_response.py,sha256=5km9-7q9GluifQ2HAml1PHwHmHByEzjwmYBCVP2_8HU,2974
38
+ pulpcore/client/pulp_file/models/paginated_repository_version_response_list.py,sha256=XJJmFDuaKLmrQti8UHd0hvZEZe6MLJKhcOFDrEXCEcU,3797
39
+ pulpcore/client/pulp_file/models/paginatedfile_file_alternate_content_source_response_list.py,sha256=YyfojWXZuKH71SJTTZaR8JOgv6YSjC5d1L9u4W38m6E,3904
40
+ pulpcore/client/pulp_file/models/paginatedfile_file_content_response_list.py,sha256=-i7Z87ei7ma-SHX2h6BVYlFK0luQiaJ0Fvmyht3V8kM,3782
41
+ pulpcore/client/pulp_file/models/paginatedfile_file_distribution_response_list.py,sha256=gvJtAUjuSOIOKujfki5xdEBHCseU6Mh84Esl7dheKRE,3822
42
+ pulpcore/client/pulp_file/models/paginatedfile_file_publication_response_list.py,sha256=_ST5xPr82H98CVdjgVd-cWNiQjv3jBVl7c87EKGg7oM,3814
43
+ pulpcore/client/pulp_file/models/paginatedfile_file_remote_response_list.py,sha256=CTo8femBEFirl8ygsfl2g8vwIjeRpP0N-MPG_m511SY,3774
44
+ pulpcore/client/pulp_file/models/paginatedfile_file_repository_response_list.py,sha256=NhI5YjpCO2gndCtj1s2Aun8YvF_UBd-O7ZzI0YrWHII,3806
45
+ pulpcore/client/pulp_file/models/patchedfile_file_alternate_content_source.py,sha256=DC5r0E7lUcy-SDmtPZwqSxKgeWbH-r6aywOzoUMlZ9o,3613
46
+ pulpcore/client/pulp_file/models/patchedfile_file_distribution.py,sha256=XUiXlisq_RJL6CxAuCn35l_NnWvhjHkLdcJKlG2JRZU,4745
47
+ pulpcore/client/pulp_file/models/patchedfile_file_remote.py,sha256=xzMVDA90RoT-7rXapQBLvIvFCRi_ReUuMQEGa-68qzI,12022
48
+ pulpcore/client/pulp_file/models/patchedfile_file_repository.py,sha256=62QYEmSXpCXQ6GeaTfXy242cbaT1sT3gjT_w-Rz5W9s,5035
49
+ pulpcore/client/pulp_file/models/policy_enum.py,sha256=alBNbWymx71uIJJLX3vvtlW-2wIql23bfXHM-DtgCww,1254
50
+ pulpcore/client/pulp_file/models/repair.py,sha256=M8UfanWpr-eFWYNl6Dba83L-dI2BA9djt8QxIhPR6i4,2756
51
+ pulpcore/client/pulp_file/models/repository_add_remove_content.py,sha256=q_pkagT8zIyG59AOIOCuZtBOVwrh_RHAbv6JcBPR0H8,3782
52
+ pulpcore/client/pulp_file/models/repository_sync_url.py,sha256=BdTHsJJ7zQzJta874hLiAVkZD105xjhqY5g1QZgOFGw,2964
53
+ pulpcore/client/pulp_file/models/repository_version_response.py,sha256=Usj4dRanjBKtaGJSbWLUMn247HYI0KBwIqqZ25zqpwI,5337
54
+ pulpcore/client/pulp_file/models/set_label.py,sha256=U4GfMTtATF317Z37s7E8CAeTo0u64QLEYZ79ZTsTOYQ,3153
55
+ pulpcore/client/pulp_file/models/set_label_response.py,sha256=nUSYQHAxcJ3ATyUmBfiu8L6xSspCLKwbwxVSZaY9yv0,3163
56
+ pulpcore/client/pulp_file/models/task_group_operation_response.py,sha256=78pUJXTIErFTVy3AFbqzjGppZyJdi582pYqxbquQnBw,2625
57
+ pulpcore/client/pulp_file/models/unset_label.py,sha256=m6s6AFgi5_7fKsjPhcLwz7ZjKXsSd_4F6PS7u5eINO0,2858
58
+ pulpcore/client/pulp_file/models/unset_label_response.py,sha256=-TZohJf66mUqg4qD04k1dNoyAx69bX_VSf-HM9EpqN8,3046
59
+ crc_pulp_file_client-20251209.2.dist-info/METADATA,sha256=en_b-hHMZd3NHKi_XhCmHoin_4wjUQvVWHzS80P4rtE,384517
60
+ crc_pulp_file_client-20251209.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
61
+ crc_pulp_file_client-20251209.2.dist-info/top_level.txt,sha256=v1J0AeNxNhm8YE5-xQe1G1YbfoMRZ_u9DAg_Gi7omeY,9
62
+ crc_pulp_file_client-20251209.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ pulpcore
pulpcore/__init__.py ADDED
@@ -0,0 +1,2 @@
1
+ from pkgutil import extend_path
2
+ __path__ = extend_path(__path__, __name__)
@@ -0,0 +1,2 @@
1
+ from pkgutil import extend_path
2
+ __path__ = extend_path(__path__, __name__)
@@ -0,0 +1,80 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Pulp 3 API
7
+
8
+ Fetch, Upload, Organize, and Distribute Software Packages
9
+
10
+ The version of the OpenAPI document: v3
11
+ Contact: pulp-list@redhat.com
12
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
+
14
+ Do not edit the class manually.
15
+ """ # noqa: E501
16
+
17
+
18
+ __version__ = "20251209.2"
19
+
20
+ # import apis into sdk package
21
+ from pulpcore.client.pulp_file.api.acs_file_api import AcsFileApi
22
+ from pulpcore.client.pulp_file.api.content_files_api import ContentFilesApi
23
+ from pulpcore.client.pulp_file.api.distributions_file_api import DistributionsFileApi
24
+ from pulpcore.client.pulp_file.api.publications_file_api import PublicationsFileApi
25
+ from pulpcore.client.pulp_file.api.remotes_file_api import RemotesFileApi
26
+ from pulpcore.client.pulp_file.api.repositories_file_api import RepositoriesFileApi
27
+ from pulpcore.client.pulp_file.api.repositories_file_versions_api import RepositoriesFileVersionsApi
28
+
29
+ # import ApiClient
30
+ from pulpcore.client.pulp_file.api_response import ApiResponse
31
+ from pulpcore.client.pulp_file.api_client import ApiClient
32
+ from pulpcore.client.pulp_file.configuration import Configuration
33
+ from pulpcore.client.pulp_file.exceptions import OpenApiException
34
+ from pulpcore.client.pulp_file.exceptions import ApiTypeError
35
+ from pulpcore.client.pulp_file.exceptions import ApiValueError
36
+ from pulpcore.client.pulp_file.exceptions import ApiKeyError
37
+ from pulpcore.client.pulp_file.exceptions import ApiAttributeError
38
+ from pulpcore.client.pulp_file.exceptions import ApiException
39
+
40
+ # import models into sdk package
41
+ from pulpcore.client.pulp_file.models.async_operation_response import AsyncOperationResponse
42
+ from pulpcore.client.pulp_file.models.content_summary_response import ContentSummaryResponse
43
+ from pulpcore.client.pulp_file.models.file_content_upload_response import FileContentUploadResponse
44
+ from pulpcore.client.pulp_file.models.file_file_alternate_content_source import FileFileAlternateContentSource
45
+ from pulpcore.client.pulp_file.models.file_file_alternate_content_source_response import FileFileAlternateContentSourceResponse
46
+ from pulpcore.client.pulp_file.models.file_file_content_response import FileFileContentResponse
47
+ from pulpcore.client.pulp_file.models.file_file_distribution import FileFileDistribution
48
+ from pulpcore.client.pulp_file.models.file_file_distribution_response import FileFileDistributionResponse
49
+ from pulpcore.client.pulp_file.models.file_file_publication import FileFilePublication
50
+ from pulpcore.client.pulp_file.models.file_file_publication_response import FileFilePublicationResponse
51
+ from pulpcore.client.pulp_file.models.file_file_remote import FileFileRemote
52
+ from pulpcore.client.pulp_file.models.file_file_remote_response import FileFileRemoteResponse
53
+ from pulpcore.client.pulp_file.models.file_file_remote_response_hidden_fields_inner import FileFileRemoteResponseHiddenFieldsInner
54
+ from pulpcore.client.pulp_file.models.file_file_repository import FileFileRepository
55
+ from pulpcore.client.pulp_file.models.file_file_repository_response import FileFileRepositoryResponse
56
+ from pulpcore.client.pulp_file.models.my_permissions_response import MyPermissionsResponse
57
+ from pulpcore.client.pulp_file.models.nested_role import NestedRole
58
+ from pulpcore.client.pulp_file.models.nested_role_response import NestedRoleResponse
59
+ from pulpcore.client.pulp_file.models.object_roles_response import ObjectRolesResponse
60
+ from pulpcore.client.pulp_file.models.paginated_repository_version_response_list import PaginatedRepositoryVersionResponseList
61
+ from pulpcore.client.pulp_file.models.paginatedfile_file_alternate_content_source_response_list import PaginatedfileFileAlternateContentSourceResponseList
62
+ from pulpcore.client.pulp_file.models.paginatedfile_file_content_response_list import PaginatedfileFileContentResponseList
63
+ from pulpcore.client.pulp_file.models.paginatedfile_file_distribution_response_list import PaginatedfileFileDistributionResponseList
64
+ from pulpcore.client.pulp_file.models.paginatedfile_file_publication_response_list import PaginatedfileFilePublicationResponseList
65
+ from pulpcore.client.pulp_file.models.paginatedfile_file_remote_response_list import PaginatedfileFileRemoteResponseList
66
+ from pulpcore.client.pulp_file.models.paginatedfile_file_repository_response_list import PaginatedfileFileRepositoryResponseList
67
+ from pulpcore.client.pulp_file.models.patchedfile_file_alternate_content_source import PatchedfileFileAlternateContentSource
68
+ from pulpcore.client.pulp_file.models.patchedfile_file_distribution import PatchedfileFileDistribution
69
+ from pulpcore.client.pulp_file.models.patchedfile_file_remote import PatchedfileFileRemote
70
+ from pulpcore.client.pulp_file.models.patchedfile_file_repository import PatchedfileFileRepository
71
+ from pulpcore.client.pulp_file.models.policy_enum import PolicyEnum
72
+ from pulpcore.client.pulp_file.models.repair import Repair
73
+ from pulpcore.client.pulp_file.models.repository_add_remove_content import RepositoryAddRemoveContent
74
+ from pulpcore.client.pulp_file.models.repository_sync_url import RepositorySyncURL
75
+ from pulpcore.client.pulp_file.models.repository_version_response import RepositoryVersionResponse
76
+ from pulpcore.client.pulp_file.models.set_label import SetLabel
77
+ from pulpcore.client.pulp_file.models.set_label_response import SetLabelResponse
78
+ from pulpcore.client.pulp_file.models.task_group_operation_response import TaskGroupOperationResponse
79
+ from pulpcore.client.pulp_file.models.unset_label import UnsetLabel
80
+ from pulpcore.client.pulp_file.models.unset_label_response import UnsetLabelResponse
@@ -0,0 +1,11 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from pulpcore.client.pulp_file.api.acs_file_api import AcsFileApi
5
+ from pulpcore.client.pulp_file.api.content_files_api import ContentFilesApi
6
+ from pulpcore.client.pulp_file.api.distributions_file_api import DistributionsFileApi
7
+ from pulpcore.client.pulp_file.api.publications_file_api import PublicationsFileApi
8
+ from pulpcore.client.pulp_file.api.remotes_file_api import RemotesFileApi
9
+ from pulpcore.client.pulp_file.api.repositories_file_api import RepositoriesFileApi
10
+ from pulpcore.client.pulp_file.api.repositories_file_versions_api import RepositoriesFileVersionsApi
11
+