onetrust-api 0.1.0__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.
- onetrust_api/__init__.py +61 -0
- onetrust_api/__main__.py +5 -0
- onetrust_api/agent/AGENTS.md +12 -0
- onetrust_api/agent/CRON.md +12 -0
- onetrust_api/agent/CRON_LOG.md +5 -0
- onetrust_api/agent/HEARTBEAT.md +28 -0
- onetrust_api/agent/IDENTITY.md +15 -0
- onetrust_api/agent/MCP_AGENTS.md +13 -0
- onetrust_api/agent/USER.md +7 -0
- onetrust_api/agent/icon.png +0 -0
- onetrust_api/agent/mcp_config.json +11 -0
- onetrust_api/agent_server.py +84 -0
- onetrust_api/api/__init__.py +7 -0
- onetrust_api/api/_operation_manifest.py +5421 -0
- onetrust_api/api/api_client_access_management.py +439 -0
- onetrust_api/api/api_client_ai_governance.py +263 -0
- onetrust_api/api/api_client_assessments.py +405 -0
- onetrust_api/api/api_client_audit_management.py +139 -0
- onetrust_api/api/api_client_base.py +389 -0
- onetrust_api/api/api_client_bulk_export.py +91 -0
- onetrust_api/api/api_client_cmp.py +67 -0
- onetrust_api/api/api_client_compliance_automation.py +43 -0
- onetrust_api/api/api_client_consent_interfaces.py +19 -0
- onetrust_api/api/api_client_consent_receipts.py +43 -0
- onetrust_api/api/api_client_cookie_consent.py +474 -0
- onetrust_api/api/api_client_cookie_consent_legacy.py +139 -0
- onetrust_api/api/api_client_cookie_domain_data.py +19 -0
- onetrust_api/api/api_client_cross_device_consent.py +19 -0
- onetrust_api/api/api_client_data_catalog.py +295 -0
- onetrust_api/api/api_client_data_discovery.py +348 -0
- onetrust_api/api/api_client_data_discovery_worker.py +55 -0
- onetrust_api/api/api_client_data_mapping.py +509 -0
- onetrust_api/api/api_client_data_mapping_legacy.py +57 -0
- onetrust_api/api/api_client_documents.py +31 -0
- onetrust_api/api/api_client_dsar.py +503 -0
- onetrust_api/api/api_client_esg.py +67 -0
- onetrust_api/api/api_client_incidents.py +91 -0
- onetrust_api/api/api_client_integrations.py +55 -0
- onetrust_api/api/api_client_inventory.py +175 -0
- onetrust_api/api/api_client_issues_management.py +115 -0
- onetrust_api/api/api_client_it_risk_management.py +697 -0
- onetrust_api/api/api_client_mobile_app_consent.py +19 -0
- onetrust_api/api/api_client_object_manager.py +483 -0
- onetrust_api/api/api_client_policy_management.py +79 -0
- onetrust_api/api/api_client_privacy_notices.py +45 -0
- onetrust_api/api/api_client_task_management.py +43 -0
- onetrust_api/api/api_client_tprm.py +187 -0
- onetrust_api/api/api_client_training.py +67 -0
- onetrust_api/api/api_client_universal_consent.py +1289 -0
- onetrust_api/api/api_client_user_provisioning.py +319 -0
- onetrust_api/api_client.py +86 -0
- onetrust_api/auth.py +95 -0
- onetrust_api/mcp/__init__.py +146 -0
- onetrust_api/mcp/mcp_access_management.py +112 -0
- onetrust_api/mcp/mcp_ai_governance.py +107 -0
- onetrust_api/mcp/mcp_assessments.py +104 -0
- onetrust_api/mcp/mcp_audit_management.py +62 -0
- onetrust_api/mcp/mcp_bulk_export.py +54 -0
- onetrust_api/mcp/mcp_cmp.py +50 -0
- onetrust_api/mcp/mcp_compliance_automation.py +46 -0
- onetrust_api/mcp/mcp_consent_interfaces.py +42 -0
- onetrust_api/mcp/mcp_consent_receipts.py +46 -0
- onetrust_api/mcp/mcp_cookie_consent.py +116 -0
- onetrust_api/mcp/mcp_cookie_consent_legacy.py +62 -0
- onetrust_api/mcp/mcp_cookie_domain_data.py +40 -0
- onetrust_api/mcp/mcp_cross_device_consent.py +42 -0
- onetrust_api/mcp/mcp_custom_api.py +47 -0
- onetrust_api/mcp/mcp_data_catalog.py +88 -0
- onetrust_api/mcp/mcp_data_discovery.py +92 -0
- onetrust_api/mcp/mcp_data_discovery_worker.py +48 -0
- onetrust_api/mcp/mcp_data_mapping.py +140 -0
- onetrust_api/mcp/mcp_data_mapping_legacy.py +54 -0
- onetrust_api/mcp/mcp_documents.py +44 -0
- onetrust_api/mcp/mcp_dsar.py +118 -0
- onetrust_api/mcp/mcp_esg.py +50 -0
- onetrust_api/mcp/mcp_incidents.py +54 -0
- onetrust_api/mcp/mcp_integrations.py +48 -0
- onetrust_api/mcp/mcp_inventory.py +84 -0
- onetrust_api/mcp/mcp_issues_management.py +58 -0
- onetrust_api/mcp/mcp_it_risk_management.py +166 -0
- onetrust_api/mcp/mcp_mobile_app_consent.py +40 -0
- onetrust_api/mcp/mcp_object_manager.py +149 -0
- onetrust_api/mcp/mcp_policy_management.py +52 -0
- onetrust_api/mcp/mcp_privacy_notices.py +48 -0
- onetrust_api/mcp/mcp_task_management.py +46 -0
- onetrust_api/mcp/mcp_tprm.py +70 -0
- onetrust_api/mcp/mcp_training.py +50 -0
- onetrust_api/mcp/mcp_universal_consent.py +236 -0
- onetrust_api/mcp/mcp_user_provisioning.py +92 -0
- onetrust_api/mcp_server.py +78 -0
- onetrust_api/onetrust_models.py +44 -0
- onetrust_api/specs/ai-governance.json +1 -0
- onetrust_api/specs/consent-preferences-consent-interfaces.json +1 -0
- onetrust_api/specs/consent-preferences-consent-management-platform-cmp.json +1 -0
- onetrust_api/specs/consent-preferences-consent-receipts.json +1 -0
- onetrust_api/specs/consent-preferences-cookie-consent-swagger.json +1 -0
- onetrust_api/specs/consent-preferences-cookie-consent.json +1 -0
- onetrust_api/specs/consent-preferences-cookie-domain-data.json +1 -0
- onetrust_api/specs/consent-preferences-cross-device-consent.json +1 -0
- onetrust_api/specs/consent-preferences-mobile-app-consent.json +1 -0
- onetrust_api/specs/consent-preferences-policy-notice-management.json +1 -0
- onetrust_api/specs/consent-preferences-universal-consent-preference-management-oas.json +1 -0
- onetrust_api/specs/data-use-governance-data-catalog.json +1 -0
- onetrust_api/specs/data-use-governance-data-discovery-worker-node.json +1 -0
- onetrust_api/specs/data-use-governance-data-discovery.json +1 -0
- onetrust_api/specs/esg-program-reporting-disclosures.json +1 -0
- onetrust_api/specs/platform-access-management.json +1 -0
- onetrust_api/specs/platform-bulk-export.json +1 -0
- onetrust_api/specs/platform-documents.json +1 -0
- onetrust_api/specs/platform-integrations.json +1 -0
- onetrust_api/specs/platform-inventory.json +1 -0
- onetrust_api/specs/platform-object-manager.json +1 -0
- onetrust_api/specs/platform-task-management.json +1 -0
- onetrust_api/specs/platform-user-provisioning.json +1 -0
- onetrust_api/specs/privacy-automation-assessment-automation.json +1 -0
- onetrust_api/specs/privacy-automation-data-mapping-automation-swagger.json +1 -0
- onetrust_api/specs/privacy-automation-data-mapping-automation.json +1 -0
- onetrust_api/specs/privacy-automation-data-subject-request-dsr-automation.json +1 -0
- onetrust_api/specs/privacy-automation-incident-management.json +1 -0
- onetrust_api/specs/tech-risk-compliance-audit-management.json +1 -0
- onetrust_api/specs/tech-risk-compliance-compliance-automation.json +1 -0
- onetrust_api/specs/tech-risk-compliance-enterprise-policy-management.json +1 -0
- onetrust_api/specs/tech-risk-compliance-issues-management.json +1 -0
- onetrust_api/specs/tech-risk-compliance-it-risk-management.json +1 -0
- onetrust_api/specs/tech-risk-compliance-training.json +1 -0
- onetrust_api/specs/third-party-management-third-party-risk-management.json +1 -0
- onetrust_api-0.1.0.dist-info/METADATA +227 -0
- onetrust_api-0.1.0.dist-info/RECORD +140 -0
- onetrust_api-0.1.0.dist-info/WHEEL +5 -0
- onetrust_api-0.1.0.dist-info/entry_points.txt +3 -0
- onetrust_api-0.1.0.dist-info/licenses/LICENSE +21 -0
- onetrust_api-0.1.0.dist-info/top_level.txt +3 -0
- scripts/generate_from_openapi.py +389 -0
- tests/__init__.py +0 -0
- tests/conftest.py +40 -0
- tests/test_auth.py +33 -0
- tests/test_mcp_server.py +32 -0
- tests/test_onetrust_api_brute_force_coverage.py +107 -0
- tests/test_onetrust_coverage.py +82 -0
- tests/test_startup.py +35 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.