CheckmarxPythonSDK 1.2.5__tar.gz → 1.2.7__tar.gz
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.
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxODataApiSDK/HttpRequests.py +1 -1
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/GroupsAPI.py +64 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/__init__.py +1 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/__init__.py +49 -4
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/AsyncRequestResponse.py +12 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/AuditQuery.py +14 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/CommentJSON.py +12 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/CompilationResponse.py +9 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/DebugMessage.py +10 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/DebugMessageResponse.py +11 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/Error.py +8 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/ExecutionResponse.py +12 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/GPTMessage.py +8 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/Metadata.py +8 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/Predicate.py +22 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/PredicateHistory.py +15 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/PredicateWithCommentJSON.py +26 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/PredicateWithCommentsJSON.py +27 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/Queries.py +21 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/QueriesTree.py +13 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Query.py +5 -3
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/QueryBuilderMessage.py +8 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/QueryBuilderPrompt.py +7 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/QueryRequest.py +21 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/QueryResponse.py +17 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/QueryResult.py +8 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/QuerySearch.py +12 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/RequestStatus.py +13 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/RequestStatusDetectLanguages.py +10 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/RequestStatusNotReady.py +8 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/ResultResponse.py +43 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/ResultsResponse.py +11 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/ResultsSummaryTree.py +16 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/SastStatus.py +8 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/Session.py +21 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/SessionRequest.py +26 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/SessionResponse.py +8 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/Sessions.py +11 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/SourcesTree.py +13 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/TimeStamp.py +6 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/dto/WebError.py +9 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/__init__.py +36 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/httpRequests.py +7 -14
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/queryEditorAPI.py +346 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/repoManagerAPI.py +1 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/sastQueriesAPI.py +1 -3
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/sastQueriesAuditAPI.py +305 -0
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/CxOne/sastResultsPredicatesAPI.py +73 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/scaAPI.py +9 -15
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxReporting/httpRequests.py +1 -1
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/httpRequests.py +1 -1
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/general/dto/CxServerLicenseData.py +10 -9
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxScaApiSDK/api.py +39 -32
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxScaApiSDK/httpRequests.py +10 -18
- checkmarxpythonsdk-1.2.7/CheckmarxPythonSDK/__version__.py +1 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/utilities/httpRequests.py +39 -50
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK.egg-info/PKG-INFO +1 -2
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK.egg-info/SOURCES.txt +35 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK.egg-info/requires.txt +0 -1
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/PKG-INFO +1 -2
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/setup.py +0 -1
- checkmarxpythonsdk-1.2.5/CheckmarxPythonSDK/CxOne/dto/Error.py +0 -27
- checkmarxpythonsdk-1.2.5/CheckmarxPythonSDK/CxOne/dto/Queries.py +0 -25
- checkmarxpythonsdk-1.2.5/CheckmarxPythonSDK/CxOne/queryEditorAPI.py +0 -394
- checkmarxpythonsdk-1.2.5/CheckmarxPythonSDK/CxOne/sastQueriesAuditAPI.py +0 -111
- checkmarxpythonsdk-1.2.5/CheckmarxPythonSDK/__version__.py +0 -1
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/AccessControl.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/AuthenticationProvider.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/Configuration.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/LDAPGroup.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/LDAPGroupAndRoleMappingDetail.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/LDAPRoleMapping.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/LDAPServer.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/LDAPTeamMapping.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/MyProfile.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/OIDCClient.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/Permission.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/Role.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/SAMLIdentityProvider.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/SAMLRoleMapping.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/SAMLServiceProvider.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/SAMLTeamMapping.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/SMTPSetting.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/ServiceProvider.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/SystemLocale.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/Team.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/User.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/WindowsDomain.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxAccessControl/accesscontrol/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxODataApiSDK/ProjectsODataAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxODataApiSDK/ResultsODataAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxODataApiSDK/ScansODataAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxODataApiSDK/Utilities.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxODataApiSDK/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/AccessControlAPI/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/AccessControlAPI/api.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/AccessControlAPI/dto/AstIdWithName.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/AccessControlAPI/dto/AstUser.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/AccessControlAPI/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/AccessControlAPI/url.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/Configuration.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/AttackDetectionAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/AuthenticationManagementAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/ClientAttributeCertificateAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/ClientInitialAccessAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/ClientRegistrationPolicyAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/ClientRoleMappingsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/ClientScopesAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/ClientsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/ComponentAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/IdentityProvidersAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/KeyAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/ProtocolMappersAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/RealmsAdminAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/RoleMapperAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/RolesAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/RolesByIDAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/RootAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/ScopeMappingsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/UserStorageProviderAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/UsersAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AccessToken.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AccessTokenAccess.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AccessTokenAuthorization.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AccessTokenCertConf.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AddressClaimSet.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AuthenticationExecutionExportRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AuthenticationExecutionInfoRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AuthenticationExecutionRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AuthenticationFlowRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AuthenticatorConfigInfoRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/AuthenticatorConfigRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/CertificateRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientInitialAccessCreatePresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientInitialAccessPresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientMappingsRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientPoliciesRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientPolicyConditionRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientPolicyExecutorRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientPolicyRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientProfileRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientProfilesRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientScopeEvaluateResourceProtocolMapperEvaluationRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ClientScopeRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ComponentExportRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ComponentRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ConfigPropertyRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/CredentialRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/FederatedIdentityRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/GlobalRequestResult.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/Group.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/GroupRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/IDToken.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/IdentityProviderMapperRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/IdentityProviderRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/JsonNode.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/KeyStoreConfig.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/KeysMetadataRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/KeysMetadataRepresentationKeyMetadataRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ManagementPermissionReference.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/MappingsRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/MemoryInfoRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/MultivaluedHashMap.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/PartialImportRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/PasswordPolicyTypeRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/Permission.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/PolicyRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ProfileInfoRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ProtocolMapperRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ProviderRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/RealmEventsConfigRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/RealmRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/RequiredActionProviderRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ResourceRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ResourceServerRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/RoleRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/RoleRepresentationComposites.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/RolesRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ScopeMappingRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ScopePermissions.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ScopeRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/ServerInfoRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/SpiInfoRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/SynchronizationResult.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/SystemInfoRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/TestLdapConnectionRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/User.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/UserConsentRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/UserFederationMapperRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/UserFederationProviderRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/UserRepresentation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/KeycloakAPI/url.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/apisecAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/applicationsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/auditTrailAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/byorResultsHandlerAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/cloudInsightsServiceAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/codeRepositoryProjectAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/config.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/contributorsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Account.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ApiSecCounters.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Application.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ApplicationInput.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ApplicationsCollection.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/AuditEvent.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/AuditEventLink.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/AuditEvents.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/BflTree.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Category.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/CategoryType.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ChangeDetails.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ComplianceSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Container.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Contributors.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/CreateEnrichAccount.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/CreatedApplication.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Credentials.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/DefaultConfig.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/DefaultConfigOut.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/EngineData.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/EngineMetrics.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/EnrichAccount.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/FileInfo.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Flag.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Git.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Group.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ImportItem.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ImportItemWithLogs.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ImportRequest.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ImportResults.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/KicsCounters.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/KicsResult.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/LanguageSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/LogItem.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/MethodInfo.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/MethodParameter.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/PlatformSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Preset.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/PresetPaged.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/PresetSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Project.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ProjectCounter.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ProjectInput.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ProjectResponseModel.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ProjectSettings.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ProjectsCollection.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Property.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/QueriesResponse.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/QueryDescription.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/QueryDescriptionSampleCode.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/QueryDetails.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/QuerySummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Result.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ResultNode.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ResultsSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/RichProject.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Rule.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/RuleInput.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SCMImportInput.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SastCounters.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SastResult.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SastScan.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScaContainersCounters.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScaCounters.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScaPackageCounters.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Scan.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScanConfig.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScanEngineVersion.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScanInfo.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScanInfoCollection.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScanInput.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScanParameter.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Scanner.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScansCollection.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Scm.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScmOrganization.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/ScmProject.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SeverityCounter.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SeveritySummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SinkFileSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SinkNodeSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SourceFileSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SourceNodeSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/StartEnrich.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/StatusDetails.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/StatusSummary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SubCheck.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/SubsetScan.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/TaskInfo.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/TotalCounters.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Tree.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/Upload.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/dto/WorkspaceQuery.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/flagsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/healthCheckServiceAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/kicsResultsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/policyInformationPointAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/projectsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/projectsOverviewAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/repoStoreServiceAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/reportAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/resultsSummaryAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/sastBestFixLocationAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/sastMigrationAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/sastQueriesAuditPresetsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/sastResourceManagementServiceAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/sastResultsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/sastResultsSummaryAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/sastScanMetadataServiceAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/scanConfigurationAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/scannersResultsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/scansAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/uploadsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxOne/utilities.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxPortalSoapApiSDK/CxAuditWebService.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxPortalSoapApiSDK/CxPortalWebService.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxPortalSoapApiSDK/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxPortalSoapApiSDK/authHeaders.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxPortalSoapApiSDK/zeepClient.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxReporting/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxReporting/api.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxReporting/config.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxReporting/dto/CreateReportDTO.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxReporting/dto/CreateReportResponseDTO.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxReporting/dto/FilterDTO.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxReporting/dto/ReportStatusDTO.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxReporting/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/AccessControlAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/ConfigurationAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CustomFieldsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CustomTasksAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/dto/CxXMLResults.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/dto/Line.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/dto/Path.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/dto/PathNode.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/dto/Query.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/dto/Result.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/dto/Snippet.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/CxSastXML/xml_results.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/DataRetentionAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/EnginesAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/GeneralAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/OsaAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/ProjectsAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/QueriesAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/ScansAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/TeamAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/config.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/exceptions/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaLibrary.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaLicense.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaLocation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaMatchType.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaScanDetail.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaSeverity.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaState.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaSummaryReport.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaVulnerability.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaVulnerabilityComment.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/CxOsaVulnerabilityState.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/osa/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/configuration/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/configuration/dto/CxSASTConfig.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/configuration/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/dataRetention/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/dataRetention/dto/CxDataRetentionRequestStatus.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/dataRetention/dto/CxDataRetentionRequestStatusStage.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/dataRetention/dto/CxDefineDataRetentionDateRangeRequest.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/dataRetention/dto/CxDefineDataRetentionNumberOfScansRequest.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/dataRetention/dto/CxDefineDataRetentionResponse.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/dataRetention/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/engines/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/engines/dto/CxEngineConfiguration.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/engines/dto/CxEngineDedication.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/engines/dto/CxEngineServer.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/engines/dto/CxEngineServerStatus.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/engines/dto/CxRegisterEngineRequestBody.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/engines/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/general/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/general/dto/CxSupportedLanguage.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/general/dto/CxTranslationInput.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/general/dto/CxUserPersistence.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/general/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxCreateProjectRequest.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxCreateProjectResponse.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxCredential.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxCustomRemoteSourceSettings.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxGitSettings.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxIssueTrackingSystem.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxIssueTrackingSystemDetail.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxIssueTrackingSystemField.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxIssueTrackingSystemFieldAllowedValue.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxIssueTrackingSystemJira.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxIssueTrackingSystemJiraField.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxIssueTrackingSystemType.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxLink.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxPerforceSettings.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxProject.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxProjectExcludeSettings.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxProjectQueueSetting.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxSVNSettings.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxSharedRemoteSourceSettingsRequest.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxSharedRemoteSourceSettingsResponse.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxSourceSettingsLink.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxTFSSettings.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxURI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxUpdateProjectNameTeamIdRequest.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/CxUpdateProjectRequest.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/customFields/CxCustomField.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/customFields/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/customTasks/CxCustomTask.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/customTasks/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/presets/CxPreset.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/projects/dto/presets/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxCreateNewScanResponse.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxDateAndTime.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxFinishedScanStatus.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxLanguageState.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxLanguageStatistic.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxPolicyFindingResponse.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxPolicyFindingsStatus.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxRegisterScanReportResponse.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxResultsStatistics.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanDetail.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanFailedGeneralQueries.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanFailedQueries.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanFileCountOfLanguage.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanParsedFiles.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanParsedFilesMetric.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanQueueDetail.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanReportStatus.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanReportXmlContent.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanResultAttackVector.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanResultAttackVectorByBFL.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanResultLabelsFields.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanResultNode.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanStage.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanState.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanStatistics.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanSucceededGeneralQueries.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxScanType.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxSchedulingSettings.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxStatisticsResult.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxStatus.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/CxStatusDetail.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/scanSettings/CxCreateScanSettingsRequestBody.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/scanSettings/CxCreateScanSettingsResponse.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/scanSettings/CxEmailNotification.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/scanSettings/CxLanguage.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/scanSettings/CxPostScanActionConditions.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/scanSettings/CxScanSettings.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/sast/scans/dto/scanSettings/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/team/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/team/dto/CxTeam.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxRestAPISDK/team/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxScaApiSDK/AccessControlAPI.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxScaApiSDK/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/CxScaApiSDK/config.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/CxCategory.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/CxSarifCategory.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifArtifactLocation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifDescription.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifDriver.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifDriverRule.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifLocation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifMessage.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifMultiFormatMessageString.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifPhysicalLocation.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifPhysicalLocationPropertyBag.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifRegion.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifResultPropertyBag.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifResultsCollection.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifRun.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifScanResult.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifTaxa.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifTaxaPropertyBag.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifTaxaRelationship.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifTaxaRelationshipTarget.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifTaxonomy.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifTool.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/SarifToolComponent.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/dto/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/sast_xml_to_sarif.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/external/sarif/stig_mapping.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/utilities/CxError.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/utilities/__init__.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/utilities/compat.py +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK/utilities/configUtility.py +2 -2
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK.egg-info/dependency_links.txt +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/CheckmarxPythonSDK.egg-info/top_level.txt +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/LICENSE +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/README.md +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/setup.cfg +0 -0
- {checkmarxpythonsdk-1.2.5 → checkmarxpythonsdk-1.2.7}/tests/test_sample.py +0 -0
|
@@ -34,7 +34,7 @@ def get_data_from_config():
|
|
|
34
34
|
return server_url, token_url, timeout, verify_ssl_cert, cert, token_req_data, proxies
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
get, _, _, _, _, _
|
|
37
|
+
get, _, _, _, _, _ = build_request_funcs(get_data_from_config)
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
def get_value_from_response(func):
|
|
@@ -12,6 +12,9 @@ from CheckmarxPythonSDK.CxOne.KeycloakAPI.dto import (
|
|
|
12
12
|
construct_management_permission_reference,
|
|
13
13
|
ManagementPermissionReference,
|
|
14
14
|
)
|
|
15
|
+
from CheckmarxPythonSDK import (
|
|
16
|
+
logger
|
|
17
|
+
)
|
|
15
18
|
|
|
16
19
|
|
|
17
20
|
def get_group_hierarchy(realm, brief_representation=False, first=None, max_result_size=100, search=None) -> List[Group]:
|
|
@@ -189,6 +192,7 @@ def create_subgroup(realm, group_id, subgroup_name) -> bool:
|
|
|
189
192
|
result = True
|
|
190
193
|
return result
|
|
191
194
|
|
|
195
|
+
|
|
192
196
|
def get_subgroup_by_id(realm, group_id):
|
|
193
197
|
"""
|
|
194
198
|
Get a subgroup by group id.
|
|
@@ -204,6 +208,7 @@ def get_subgroup_by_id(realm, group_id):
|
|
|
204
208
|
subgroups = response.json()
|
|
205
209
|
return subgroups
|
|
206
210
|
|
|
211
|
+
|
|
207
212
|
def get_group_permissions(realm, group_id) -> ManagementPermissionReference:
|
|
208
213
|
"""
|
|
209
214
|
Return object stating whether client Authorization permissions have
|
|
@@ -298,3 +303,62 @@ def create_group(realm, group_name):
|
|
|
298
303
|
if response.status_code == CREATED:
|
|
299
304
|
result = True
|
|
300
305
|
return result
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
def get_or_create_groups(
|
|
309
|
+
group_full_name: str,
|
|
310
|
+
realm: str
|
|
311
|
+
) -> str:
|
|
312
|
+
group = get_group_by_name(realm=realm, group_name=group_full_name)
|
|
313
|
+
if group:
|
|
314
|
+
group_id = group.id
|
|
315
|
+
logger.info(f"group {group_full_name} found. Its id is: {group_id}")
|
|
316
|
+
return group_id
|
|
317
|
+
logger.info(f"group {group_full_name} not found. It contains sub groups.")
|
|
318
|
+
group_id = create_all_groups(realm=realm, group_full_name=group_full_name)
|
|
319
|
+
logger.info(f"group {group_full_name} created, id: {group_id}")
|
|
320
|
+
return group_id
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
def create_all_groups(realm, group_full_name) -> str:
|
|
324
|
+
group_names = group_full_name.split("/")
|
|
325
|
+
root_group_name = group_names[0]
|
|
326
|
+
root_group_id = create_root_group_if_not_exist(realm, root_group_name)
|
|
327
|
+
if len(group_names) == 1:
|
|
328
|
+
return root_group_id
|
|
329
|
+
group_id = create_sub_groups(
|
|
330
|
+
realm=realm,
|
|
331
|
+
group_names=group_names,
|
|
332
|
+
root_group_id=root_group_id
|
|
333
|
+
)
|
|
334
|
+
return group_id
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
def create_sub_groups(realm, group_names, root_group_id) -> str:
|
|
338
|
+
parent_group_id = root_group_id
|
|
339
|
+
for index, group_name in enumerate(group_names):
|
|
340
|
+
if index == 0:
|
|
341
|
+
continue
|
|
342
|
+
group_path = "/".join(group_names[0: index + 1])
|
|
343
|
+
group = get_group_by_name(realm=realm, group_name=group_path)
|
|
344
|
+
if not group:
|
|
345
|
+
logger.info(f"current group: {group_path} does not exist, start create")
|
|
346
|
+
create_subgroup(realm=realm, group_id=parent_group_id, subgroup_name=group_name)
|
|
347
|
+
logger.info(f"finish create group: {group_path}")
|
|
348
|
+
group = get_group_by_name(realm=realm, group_name=group_path)
|
|
349
|
+
parent_group_id = group.id
|
|
350
|
+
return parent_group_id
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
def create_root_group_if_not_exist(realm, root_group_name) -> str:
|
|
354
|
+
root_group = get_group_by_name(realm=realm, group_name=root_group_name)
|
|
355
|
+
if root_group:
|
|
356
|
+
root_group_id = root_group.id
|
|
357
|
+
logger.info(f"root group {root_group_name} exist. id: {root_group_id}")
|
|
358
|
+
else:
|
|
359
|
+
logger.info(f"root group not exist, start create root group")
|
|
360
|
+
create_group(realm=realm, group_name=root_group_name)
|
|
361
|
+
root_group = get_group_by_name(realm=realm, group_name=root_group_name)
|
|
362
|
+
root_group_id = root_group.id
|
|
363
|
+
logger.info(f"root group {root_group_name} created. id: {root_group_id}")
|
|
364
|
+
return root_group_id
|
|
@@ -58,11 +58,8 @@ from .healthCheckServiceAPI import (
|
|
|
58
58
|
|
|
59
59
|
from .KeycloakAPI import (
|
|
60
60
|
get_realms,
|
|
61
|
-
|
|
62
61
|
get_users,
|
|
63
62
|
create_a_new_user,
|
|
64
|
-
|
|
65
|
-
|
|
66
63
|
get_group_hierarchy,
|
|
67
64
|
)
|
|
68
65
|
|
|
@@ -92,6 +89,27 @@ from .projectsOverviewAPI import (
|
|
|
92
89
|
|
|
93
90
|
from .queryEditorAPI import (
|
|
94
91
|
create_new_audit_session,
|
|
92
|
+
heath_check_to_ensure_audit_session_is_kept_alive,
|
|
93
|
+
delete_audit_session_with_specific_id,
|
|
94
|
+
get_the_logs_associated_to_the_audit_session,
|
|
95
|
+
scan_the_audit_session_sources,
|
|
96
|
+
create_or_override_query,
|
|
97
|
+
get_all_queries,
|
|
98
|
+
get_data_of_a_specified_query,
|
|
99
|
+
delete_a_specified_custom_or_overridden_query,
|
|
100
|
+
update_specified_query_metadata,
|
|
101
|
+
update_multiple_query_sources,
|
|
102
|
+
validate_the_queries_provided,
|
|
103
|
+
execute_the_queries_on_the_audit_session_scanned_project,
|
|
104
|
+
check_the_status_of_a_specified_request,
|
|
105
|
+
cancel_the_specified_request_execution,
|
|
106
|
+
get_all_results_data_summary_tree_for_all_the_session_runs,
|
|
107
|
+
get_all_vulnerabilities_related_to_a_given_result,
|
|
108
|
+
get_specified_vulnerability_data_such_as_attack_vector,
|
|
109
|
+
get_specified_result_debug_messages,
|
|
110
|
+
get_query_builder_history,
|
|
111
|
+
delete_query_builder_gpt_history,
|
|
112
|
+
process_query_builder_gpt_request,
|
|
95
113
|
)
|
|
96
114
|
|
|
97
115
|
from .repoManagerAPI import (
|
|
@@ -142,9 +160,28 @@ from .sastQueriesAPI import (
|
|
|
142
160
|
|
|
143
161
|
from .sastQueriesAuditAPI import (
|
|
144
162
|
get_all_queries,
|
|
163
|
+
create_new_query,
|
|
164
|
+
get_all_queries_search,
|
|
145
165
|
get_queries_metadata,
|
|
146
166
|
get_query_source,
|
|
167
|
+
delete_overridden_query,
|
|
147
168
|
update_query_source,
|
|
169
|
+
create_new_session,
|
|
170
|
+
get_all_active_sessions_related_to_webaudit,
|
|
171
|
+
get_session_details,
|
|
172
|
+
delete_session_with_specific_id,
|
|
173
|
+
heath_check_to_ensure_session_is_kept_alive,
|
|
174
|
+
check_if_sast_engine_is_ready_to_use,
|
|
175
|
+
check_the_status_of_some_scan_related_requests,
|
|
176
|
+
detect_the_languages_of_the_project_to_scan,
|
|
177
|
+
scan_the_project_using_sast_engine,
|
|
178
|
+
compile_the_queries_of_the_scanned_project,
|
|
179
|
+
execute_the_queries_of_the_scanned_project,
|
|
180
|
+
cancel_the_queries_execution,
|
|
181
|
+
get_the_logs_associated_to_the_audit_session,
|
|
182
|
+
retrieve_gpt_history,
|
|
183
|
+
delete_gpt_history,
|
|
184
|
+
process_gpt_prompt_request,
|
|
148
185
|
)
|
|
149
186
|
|
|
150
187
|
from .sastQueriesAuditPresetsAPI import (
|
|
@@ -169,11 +206,19 @@ from .sastResultsAPI import (
|
|
|
169
206
|
get_sast_results_by_scan_id,
|
|
170
207
|
)
|
|
171
208
|
|
|
209
|
+
from .sastResultsPredicatesAPI import (
|
|
210
|
+
get_all_predicates_for_similarity_id,
|
|
211
|
+
get_latest_predicates_for_similarity_id,
|
|
212
|
+
predicate_severity_and_state_by_similarity_id_and_project_id,
|
|
213
|
+
update_predicate_comment_by_predicate_id,
|
|
214
|
+
recalculate_summary_counters,
|
|
215
|
+
delete_a_predicate_history,
|
|
216
|
+
)
|
|
217
|
+
|
|
172
218
|
from .sastResultsSummaryAPI import (
|
|
173
219
|
get_sast_aggregate_results,
|
|
174
220
|
)
|
|
175
221
|
|
|
176
|
-
|
|
177
222
|
from .sastScanMetadataServiceAPI import (
|
|
178
223
|
get_metadata_of_scans,
|
|
179
224
|
get_metadata_of_scan,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
class AuditQuery(object):
|
|
3
|
+
def __init__(self, id: str = None, source: str = None):
|
|
4
|
+
self.id = id
|
|
5
|
+
self.source = source
|
|
6
|
+
|
|
7
|
+
def __str__(self):
|
|
8
|
+
return f"AuditQuery(id={self.id}, source={self.source})"
|
|
9
|
+
|
|
10
|
+
def to_dict(self):
|
|
11
|
+
return {
|
|
12
|
+
"id": self.id,
|
|
13
|
+
"source": self.source,
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
class CommentJSON(object):
|
|
2
|
+
def __init__(self, id: str = None, date: str = None, user: str = None, content: str = None,
|
|
3
|
+
is_deleted: bool = None):
|
|
4
|
+
self.id = id
|
|
5
|
+
self.date = date
|
|
6
|
+
self.user = user
|
|
7
|
+
self.content = content
|
|
8
|
+
self.isDeleted = is_deleted
|
|
9
|
+
|
|
10
|
+
def __str__(self):
|
|
11
|
+
return (f"CommentJSON(id={self.id}, date={self.date}, user={self.user}, content={self.content},"
|
|
12
|
+
f" isDeleted={self.isDeleted})")
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
|
|
2
|
+
class DebugMessage(object):
|
|
3
|
+
def __init__(self, message_line: int = None, debug_message: str = None, timestamp: str = None):
|
|
4
|
+
self.messageLine = message_line
|
|
5
|
+
self.debugMessage = debug_message
|
|
6
|
+
self.timestamp = timestamp
|
|
7
|
+
|
|
8
|
+
def __str__(self):
|
|
9
|
+
return (f"DebugMessage(messageLine={self.messageLine}, "
|
|
10
|
+
f"debugMessage={self.debugMessage}, timestamp={self.timestamp})")
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
from .DebugMessage import DebugMessage
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class DebugMessageResponse(object):
|
|
6
|
+
def __init__(self, data: List[DebugMessage] = None, total_count: int = None):
|
|
7
|
+
self.data = data
|
|
8
|
+
self.totalCount = total_count
|
|
9
|
+
|
|
10
|
+
def __str__(self):
|
|
11
|
+
return f"DebugMessageResponse(data={self.data}, totalCount={self.totalCount})"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
from .TimeStamp import TimeStamp
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class ExecutionResponse(object):
|
|
6
|
+
def __init__(self, scan_id: str = None, time_stamp: TimeStamp = None, queries: List[dict] = None):
|
|
7
|
+
self.scanId = scan_id
|
|
8
|
+
self.timeStamp = time_stamp
|
|
9
|
+
self.queries = queries
|
|
10
|
+
|
|
11
|
+
def __str__(self):
|
|
12
|
+
return f"ExecutionResponse(scanId={self.scanId}, timeStamp={self.timeStamp}, queries={self.queries})"
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
class Predicate(object):
|
|
3
|
+
def __init__(self, id: str = None, similarity_id: str = None, project_id: str = None,
|
|
4
|
+
severity: str = None, state: str = None, comment: str = None,
|
|
5
|
+
created_by: str = None, created_at: str = None, change_origin_type: int = None,
|
|
6
|
+
change_origin_name: str = None):
|
|
7
|
+
self.ID = id
|
|
8
|
+
self.similarityId = similarity_id
|
|
9
|
+
self.projectId = project_id
|
|
10
|
+
self.severity = severity
|
|
11
|
+
self.state = state
|
|
12
|
+
self.comment = comment
|
|
13
|
+
self.createdBy = created_by
|
|
14
|
+
self.createdAt = created_at
|
|
15
|
+
self.changeOriginType = change_origin_type
|
|
16
|
+
self.changeOriginName = change_origin_name
|
|
17
|
+
|
|
18
|
+
def __str__(self):
|
|
19
|
+
return (f"Predicate(ID={self.ID}, similarityId={self.similarityId}, projectId={self.projectId}, "
|
|
20
|
+
f"severity={self.severity}, state={self.state}, comment={self.comment}, createdBy={self.createdBy}, "
|
|
21
|
+
f"createdAt={self.createdAt}, changeOriginType={self.changeOriginType}, "
|
|
22
|
+
f"changeOriginName={self.changeOriginName})")
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
from .PredicateWithCommentJSON import PredicateWithCommentJSON
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class PredicateHistory(object):
|
|
6
|
+
def __init__(self, similarity_id: str = None, project_id: str = None,
|
|
7
|
+
predicates: List[PredicateWithCommentJSON] = None, total_count: int = None):
|
|
8
|
+
self.similarityId = similarity_id
|
|
9
|
+
self.projectId = project_id
|
|
10
|
+
self.predicates = predicates
|
|
11
|
+
self.totalCount = total_count
|
|
12
|
+
|
|
13
|
+
def __str__(self):
|
|
14
|
+
return (f"PredicateHistory(similarityId={self.similarityId}, projectId={self.projectId}, "
|
|
15
|
+
f"predicates={self.predicates}, totalCount={self.totalCount})")
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from .CommentJSON import CommentJSON
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class PredicateWithCommentJSON(object):
|
|
5
|
+
def __init__(self, id: str = None, similarity_id: str = None, project_id: str = None, severity: str = None,
|
|
6
|
+
state: str = None, comment: str = None, comment_json: CommentJSON = None,
|
|
7
|
+
created_by: str = None, created_at: str = None, change_origin_type: int = None,
|
|
8
|
+
change_origin_name: str = None):
|
|
9
|
+
self.ID = id
|
|
10
|
+
self.similarityId = similarity_id
|
|
11
|
+
self.projectId = project_id
|
|
12
|
+
self.severity = severity
|
|
13
|
+
self.state = state
|
|
14
|
+
self.comment = comment
|
|
15
|
+
self.commentJSON = comment_json
|
|
16
|
+
self.createdBy = created_by
|
|
17
|
+
self.createdAt = created_at
|
|
18
|
+
self.changeOriginType = change_origin_type
|
|
19
|
+
self.changeOriginName = change_origin_name
|
|
20
|
+
|
|
21
|
+
def __str__(self):
|
|
22
|
+
return (f"PredicateWithCommentJSON(ID={self.ID}, similarityId={self.similarityId}, "
|
|
23
|
+
f"projectId={self.projectId}, severity={self.severity}, state={self.state}, "
|
|
24
|
+
f"comment={self.comment}, commentJSON={self.commentJSON}, createdBy={self.createdBy}, "
|
|
25
|
+
f"createdAt={self.createdAt}, changeOriginType={self.changeOriginType}, "
|
|
26
|
+
f"changeOriginName={self.changeOriginName})")
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
from .CommentJSON import CommentJSON
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class PredicateWithCommentsJSON(object):
|
|
6
|
+
def __init__(self, id: str = None, similarity_id: str = None, project_id: str = None, severity: str = None,
|
|
7
|
+
state: str = None, comment: str = None, comments_json: List[CommentJSON] = None,
|
|
8
|
+
created_by: str = None, created_at: str = None, change_origin_type: int = None,
|
|
9
|
+
change_origin_name: str = None):
|
|
10
|
+
self.ID = id
|
|
11
|
+
self.similarityId = similarity_id
|
|
12
|
+
self.projectId = project_id
|
|
13
|
+
self.severity = severity
|
|
14
|
+
self.state = state
|
|
15
|
+
self.comment = comment
|
|
16
|
+
self.commentsJSON = comments_json
|
|
17
|
+
self.createdBy = created_by
|
|
18
|
+
self.createdAt = created_at
|
|
19
|
+
self.changeOriginType = change_origin_type
|
|
20
|
+
self.changeOriginName = change_origin_name
|
|
21
|
+
|
|
22
|
+
def __str__(self):
|
|
23
|
+
return (f"PredicateWitCommentsJSON(ID={self.ID}, similarityId={self.similarityId}, "
|
|
24
|
+
f"projectId={self.projectId}, severity={self.severity}, state={self.state}, "
|
|
25
|
+
f"comment={self.comment}, commentsJSON={self.commentsJSON}, createdBy={self.createdBy}, "
|
|
26
|
+
f"createdAt={self.createdAt}, changeOriginType={self.changeOriginType}, "
|
|
27
|
+
f"changeOriginName={self.changeOriginName})")
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
class Queries(object):
|
|
2
|
+
def __init__(self, id: int = None, name: str = None, group: str = None, level: str = None, lang: str = None,
|
|
3
|
+
modify: str = None, is_executable: bool = None):
|
|
4
|
+
self.id = id
|
|
5
|
+
self.name = name
|
|
6
|
+
self.group = group
|
|
7
|
+
self.level = level
|
|
8
|
+
self.lang = lang
|
|
9
|
+
self.modify = modify
|
|
10
|
+
self.isExecutable = is_executable
|
|
11
|
+
|
|
12
|
+
def __str__(self):
|
|
13
|
+
return f"""Queries(
|
|
14
|
+
id={self.id},
|
|
15
|
+
name={self.name},
|
|
16
|
+
group={self.group},
|
|
17
|
+
level={self.level},
|
|
18
|
+
lang={self.lang},
|
|
19
|
+
modify={self.modify},
|
|
20
|
+
isExecutable={self.isExecutable}
|
|
21
|
+
)"""
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from typing import List
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class QueriesTree(object):
|
|
6
|
+
def __init__(self, is_leaf: bool = None, title: str = None, key: str = None, children: List[QueriesTree] = None):
|
|
7
|
+
self.isLeaf = is_leaf
|
|
8
|
+
self.title = title
|
|
9
|
+
self.key = key
|
|
10
|
+
self.children = children
|
|
11
|
+
|
|
12
|
+
def __str__(self):
|
|
13
|
+
return f"QueriesTree(isLeaf={self.isLeaf}, title={self.title}, key={self.key}, children={self.children})"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
class Query(object):
|
|
2
|
-
def __init__(self, source, level, path, modified, cwe, severity, is_executable, cx_description_id,
|
|
2
|
+
def __init__(self, id, source, level, path, modified, cwe, severity, is_executable, cx_description_id,
|
|
3
3
|
query_description_id):
|
|
4
4
|
"""
|
|
5
5
|
|
|
@@ -14,6 +14,7 @@ class Query(object):
|
|
|
14
14
|
cx_description_id (int):
|
|
15
15
|
query_description_id (str):
|
|
16
16
|
"""
|
|
17
|
+
self.id = id
|
|
17
18
|
self.source = source
|
|
18
19
|
self.level = level
|
|
19
20
|
self.path = path
|
|
@@ -25,8 +26,9 @@ class Query(object):
|
|
|
25
26
|
self.QueryDescriptionID = query_description_id
|
|
26
27
|
|
|
27
28
|
def __str__(self):
|
|
28
|
-
return """Query(source={}, level={}, modified={}, Cwe={}, Severity={}, IsExecutable={}, CxDescriptionID={},
|
|
29
|
+
return """Query(id={}, source={}, level={}, modified={}, Cwe={}, Severity={}, IsExecutable={}, CxDescriptionID={},
|
|
29
30
|
QueryDescriptionID={})""".format(
|
|
30
|
-
self.source, self.level, self.modified, self.Cwe, self.Severity, self.IsExecutable,
|
|
31
|
+
self.id, self.source, self.level, self.modified, self.Cwe, self.Severity, self.IsExecutable,
|
|
32
|
+
self.CxDescriptionID,
|
|
31
33
|
self.QueryDescriptionID
|
|
32
34
|
)
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from .Metadata import Metadata
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class QueryRequest(object):
|
|
5
|
+
def __init__(self, path: str = None, name: str = None, source: str = None, metadata: Metadata = None):
|
|
6
|
+
self.path = path
|
|
7
|
+
self.name = name
|
|
8
|
+
self.source = source
|
|
9
|
+
self.metadata = metadata
|
|
10
|
+
|
|
11
|
+
def __str__(self):
|
|
12
|
+
return f"QueryRequest(path={self.path}, name={self.name}, source={self.source}, metadata={self.metadata})"
|
|
13
|
+
|
|
14
|
+
def to_dict(self):
|
|
15
|
+
return {
|
|
16
|
+
"path": self.path,
|
|
17
|
+
"name": self.name,
|
|
18
|
+
"source": self.source,
|
|
19
|
+
"metadata": self.metadata
|
|
20
|
+
}
|
|
21
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from .Metadata import Metadata
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class QueryResponse(object):
|
|
5
|
+
def __init__(self, id: str = None, name: str = None, level: str = None, path: str = None, source: str = None,
|
|
6
|
+
metadata: Metadata = None):
|
|
7
|
+
self.id = id
|
|
8
|
+
self.name = name
|
|
9
|
+
self.level = level
|
|
10
|
+
self.path = path
|
|
11
|
+
self.source = source
|
|
12
|
+
self.metadata = metadata
|
|
13
|
+
|
|
14
|
+
def __str__(self):
|
|
15
|
+
return (f"QueryResponse(id={self.id}, name={self.name}, level={self.level}, "
|
|
16
|
+
f"path={self.path}, source={self.source}, "
|
|
17
|
+
f"metadata={self.metadata})")
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
from .Queries import Queries
|
|
3
|
+
from .QueryResult import QueryResult
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class QuerySearch(object):
|
|
7
|
+
def __init__(self, query: Queries = None, results: List[QueryResult] = None):
|
|
8
|
+
self.query = query
|
|
9
|
+
self.results = results
|
|
10
|
+
|
|
11
|
+
def __str__(self):
|
|
12
|
+
return f"QuerySearch(query={self.query}, results={self.results})"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from .CompilationResponse import CompilationResponse
|
|
2
|
+
from .ExecutionResponse import ExecutionResponse
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class RequestStatus(object):
|
|
6
|
+
def __init__(self, completed: bool = None, status: str = None, value: type[CompilationResponse
|
|
7
|
+
| ExecutionResponse] = None):
|
|
8
|
+
self.completed = completed
|
|
9
|
+
self.status = status
|
|
10
|
+
self.value = value
|
|
11
|
+
|
|
12
|
+
def __str__(self):
|
|
13
|
+
return f"RequestStatus(completed={self.completed}, status={self.status}, value={self.value})"
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class RequestStatusDetectLanguages(object):
|
|
5
|
+
def __init__(self, completed: bool = None, value: List[str] = None):
|
|
6
|
+
self.completed = completed
|
|
7
|
+
self.value = value
|
|
8
|
+
|
|
9
|
+
def __str__(self):
|
|
10
|
+
return f"RequestStatusDetectLanguages(completed={self.completed}, value={self.value})"
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
class ResultResponse(object):
|
|
2
|
+
|
|
3
|
+
def __init__(self, vulnerability_id: str, source_file: str, source_line: int, source_id: int, source_name: str,
|
|
4
|
+
source_type: str, destination_file: str, destination_line: int, destination_id: int,
|
|
5
|
+
destination_name: str, destination_type: str, state: str, path_size: int):
|
|
6
|
+
self.vulnerabilityId = vulnerability_id
|
|
7
|
+
self.sourceFile = source_file
|
|
8
|
+
self.sourceLine = source_line
|
|
9
|
+
self.sourceId = source_id
|
|
10
|
+
self.sourceName = source_name
|
|
11
|
+
self.sourceType = source_type
|
|
12
|
+
self.destinationFile = destination_file
|
|
13
|
+
self.destinationLine = destination_line
|
|
14
|
+
self.destinationId = destination_id
|
|
15
|
+
self.destinationName = destination_name
|
|
16
|
+
self.destinationType = destination_type
|
|
17
|
+
self.state = state
|
|
18
|
+
self.pathSize = path_size
|
|
19
|
+
|
|
20
|
+
def __str__(self):
|
|
21
|
+
return (f"ResultResponse(vulnerabilityId={self.vulnerabilityId}, sourceFile={self.sourceFile}, "
|
|
22
|
+
f"sourceLine={self.sourceLine},"
|
|
23
|
+
f"sourceId={self.sourceId}, sourceName={self.sourceName}, sourceType={self.sourceType}, "
|
|
24
|
+
f"destinationFile={self.destinationFile}, destinationLine={self.destinationLine}, "
|
|
25
|
+
f"destinationId={self.destinationId}, destinationName={self.destinationName},"
|
|
26
|
+
f"destinationType={self.destinationType}, state={self.state}, pathSize={self.pathSize})")
|
|
27
|
+
|
|
28
|
+
def to_dict(self):
|
|
29
|
+
return {
|
|
30
|
+
"vulnerabilityId": self.vulnerabilityId,
|
|
31
|
+
"sourceFile": self.sourceFile,
|
|
32
|
+
"sourceLine": self.sourceLine,
|
|
33
|
+
"sourceId": self.sourceId,
|
|
34
|
+
"sourceName": self.sourceName,
|
|
35
|
+
"sourceType": self.sourceType,
|
|
36
|
+
"destinationFile": self.destinationFile,
|
|
37
|
+
"destinationLine": self.destinationLine,
|
|
38
|
+
"destinationId": self.destinationId,
|
|
39
|
+
"destinationName": self.destinationName,
|
|
40
|
+
"destinationType": self.destinationType,
|
|
41
|
+
"state": self.state,
|
|
42
|
+
"pathSize": self.pathSize,
|
|
43
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from typing import List
|
|
2
|
+
from .ResultResponse import ResultResponse
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class ResultsResponse(object):
|
|
6
|
+
def __init__(self, data: List[ResultResponse] = None, total_count: int = None):
|
|
7
|
+
self.data = data
|
|
8
|
+
self.totalCount = total_count
|
|
9
|
+
|
|
10
|
+
def __str__(self):
|
|
11
|
+
return f"ResultsResponse(data={self.data}, totalCount={self.totalCount})"
|