emasser 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.dockerignore +11 -0
- data/.env-example +10 -0
- data/.github/release-drafter.yml +16 -0
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/draft-release.yml +16 -0
- data/.github/workflows/generate_docs.yml +33 -0
- data/.github/workflows/gh-pages.yml +33 -0
- data/.github/workflows/release.yml +38 -0
- data/.github/workflows/rubocop.yml +23 -0
- data/.github/workflows/test-cli.yml +73 -0
- data/.gitignore +17 -0
- data/.mergify.yml +25 -0
- data/.rubocop.yml +80 -0
- data/.rubocop_todo.yml +27 -0
- data/CHANGELOG.md +16 -0
- data/Dockerfile +10 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +110 -0
- data/LICENSE.md +15 -0
- data/README.md +108 -0
- data/Rakefile +18 -0
- data/TAGS +2393 -0
- data/_config.yml +2 -0
- data/docs/developers.md +115 -0
- data/docs/features.md +1193 -0
- data/docs/redoc/index.html +1231 -0
- data/docs/swagger/dist/favicon-16x16.png +0 -0
- data/docs/swagger/dist/favicon-32x32.png +0 -0
- data/docs/swagger/dist/oauth2-redirect.html +75 -0
- data/docs/swagger/dist/swagger-ui-bundle.js +3 -0
- data/docs/swagger/dist/swagger-ui-bundle.js.map +1 -0
- data/docs/swagger/dist/swagger-ui-es-bundle-core.js +3 -0
- data/docs/swagger/dist/swagger-ui-es-bundle-core.js.map +1 -0
- data/docs/swagger/dist/swagger-ui-es-bundle.js +3 -0
- data/docs/swagger/dist/swagger-ui-es-bundle.js.map +1 -0
- data/docs/swagger/dist/swagger-ui-standalone-preset.js +3 -0
- data/docs/swagger/dist/swagger-ui-standalone-preset.js.map +1 -0
- data/docs/swagger/dist/swagger-ui.css +4 -0
- data/docs/swagger/dist/swagger-ui.css.map +1 -0
- data/docs/swagger/dist/swagger-ui.js +3 -0
- data/docs/swagger/dist/swagger-ui.js.map +1 -0
- data/docs/swagger/index.html +60 -0
- data/emass_client/eMASSRestOpenApi.yaml +5698 -0
- data/emass_client/ruby_client/.gitignore +39 -0
- data/emass_client/ruby_client/.rspec +2 -0
- data/emass_client/ruby_client/.rubocop.yml +154 -0
- data/emass_client/ruby_client/.swagger-codegen/VERSION +1 -0
- data/emass_client/ruby_client/.swagger-codegen-ignore +23 -0
- data/emass_client/ruby_client/Gemfile +9 -0
- data/emass_client/ruby_client/README.md +1284 -0
- data/emass_client/ruby_client/Rakefile +8 -0
- data/emass_client/ruby_client/docs/ArtifactsApi.md +284 -0
- data/emass_client/ruby_client/docs/ArtifactsDelete.md +6 -0
- data/emass_client/ruby_client/docs/ArtifactsDeleteInner.md +7 -0
- data/emass_client/ruby_client/docs/ArtifactsExportApi.md +76 -0
- data/emass_client/ruby_client/docs/ArtifactsGet.md +20 -0
- data/emass_client/ruby_client/docs/ArtifactsRequestPutBody.md +16 -0
- data/emass_client/ruby_client/docs/ArtifactsResponseDel.md +8 -0
- data/emass_client/ruby_client/docs/ArtifactsResponseDelData.md +9 -0
- data/emass_client/ruby_client/docs/ArtifactsResponseGet.md +8 -0
- data/emass_client/ruby_client/docs/ArtifactsResponsePutPost.md +8 -0
- data/emass_client/ruby_client/docs/CACApi.md +140 -0
- data/emass_client/ruby_client/docs/CMMCAssessmentsApi.md +71 -0
- data/emass_client/ruby_client/docs/CacGet.md +13 -0
- data/emass_client/ruby_client/docs/CacRequestPostBody.md +8 -0
- data/emass_client/ruby_client/docs/CacResponseGet.md +8 -0
- data/emass_client/ruby_client/docs/CacResponsePost.md +8 -0
- data/emass_client/ruby_client/docs/CacResponsePostData.md +9 -0
- data/emass_client/ruby_client/docs/CmmcGet.md +19 -0
- data/emass_client/ruby_client/docs/CmmcResponseGet.md +8 -0
- data/emass_client/ruby_client/docs/ConnectivityCcsd.md +8 -0
- data/emass_client/ruby_client/docs/ControlsApi.md +140 -0
- data/emass_client/ruby_client/docs/ControlsGet.md +36 -0
- data/emass_client/ruby_client/docs/ControlsPut.md +9 -0
- data/emass_client/ruby_client/docs/ControlsRequestPutBody.md +29 -0
- data/emass_client/ruby_client/docs/ControlsResponseGet.md +8 -0
- data/emass_client/ruby_client/docs/ControlsResponsePut.md +8 -0
- data/emass_client/ruby_client/docs/DefinitionTransitions.md +9 -0
- data/emass_client/ruby_client/docs/DeleteMilestone.md +7 -0
- data/emass_client/ruby_client/docs/DeletePoam.md +7 -0
- data/emass_client/ruby_client/docs/Empty200Response.md +6 -0
- data/emass_client/ruby_client/docs/Error.md +8 -0
- data/emass_client/ruby_client/docs/InstancesTransitions.md +12 -0
- data/emass_client/ruby_client/docs/MilestoneResponseGet.md +8 -0
- data/emass_client/ruby_client/docs/MilestoneResponsePost.md +8 -0
- data/emass_client/ruby_client/docs/MilestoneResponsePut.md +8 -0
- data/emass_client/ruby_client/docs/MilestonesApi.md +350 -0
- data/emass_client/ruby_client/docs/MilestonesDelete.md +6 -0
- data/emass_client/ruby_client/docs/MilestonesGet.md +12 -0
- data/emass_client/ruby_client/docs/MilestonesPost.md +6 -0
- data/emass_client/ruby_client/docs/MilestonesPut.md +6 -0
- data/emass_client/ruby_client/docs/MilestonesPutPostDelete.md +11 -0
- data/emass_client/ruby_client/docs/MilestonesRequestPostBody.md +9 -0
- data/emass_client/ruby_client/docs/MilestonesRequestPutBody.md +9 -0
- data/emass_client/ruby_client/docs/MilestonesRequiredPost.md +8 -0
- data/emass_client/ruby_client/docs/MilestonesRequiredPut.md +9 -0
- data/emass_client/ruby_client/docs/Model200.md +7 -0
- data/emass_client/ruby_client/docs/Model201.md +7 -0
- data/emass_client/ruby_client/docs/Model201Meta.md +8 -0
- data/emass_client/ruby_client/docs/Model400.md +7 -0
- data/emass_client/ruby_client/docs/Model400Meta.md +8 -0
- data/emass_client/ruby_client/docs/Model400Response.md +7 -0
- data/emass_client/ruby_client/docs/Model401.md +7 -0
- data/emass_client/ruby_client/docs/Model401Meta.md +8 -0
- data/emass_client/ruby_client/docs/Model403.md +7 -0
- data/emass_client/ruby_client/docs/Model403Meta.md +8 -0
- data/emass_client/ruby_client/docs/Model404.md +8 -0
- data/emass_client/ruby_client/docs/Model404Response.md +7 -0
- data/emass_client/ruby_client/docs/Model405.md +7 -0
- data/emass_client/ruby_client/docs/Model405Meta.md +8 -0
- data/emass_client/ruby_client/docs/Model411.md +7 -0
- data/emass_client/ruby_client/docs/Model411Meta.md +8 -0
- data/emass_client/ruby_client/docs/Model490.md +7 -0
- data/emass_client/ruby_client/docs/Model490Meta.md +8 -0
- data/emass_client/ruby_client/docs/Model500.md +7 -0
- data/emass_client/ruby_client/docs/Model500Meta.md +8 -0
- data/emass_client/ruby_client/docs/PACApi.md +137 -0
- data/emass_client/ruby_client/docs/POAMApi.md +346 -0
- data/emass_client/ruby_client/docs/PacGet.md +14 -0
- data/emass_client/ruby_client/docs/PacPost.md +9 -0
- data/emass_client/ruby_client/docs/PacRequestPostBody.md +9 -0
- data/emass_client/ruby_client/docs/PacResponseGet.md +8 -0
- data/emass_client/ruby_client/docs/PacResponsePost.md +8 -0
- data/emass_client/ruby_client/docs/PoamDelete.md +6 -0
- data/emass_client/ruby_client/docs/PoamGet.md +39 -0
- data/emass_client/ruby_client/docs/PoamPost.md +6 -0
- data/emass_client/ruby_client/docs/PoamPostPutDel.md +10 -0
- data/emass_client/ruby_client/docs/PoamPut.md +6 -0
- data/emass_client/ruby_client/docs/PoamRequestPostBody.md +6 -0
- data/emass_client/ruby_client/docs/PoamRequestPutBody.md +6 -0
- data/emass_client/ruby_client/docs/PoamRequiredPost.md +32 -0
- data/emass_client/ruby_client/docs/PoamRequiredPut.md +35 -0
- data/emass_client/ruby_client/docs/PoamResponseDelete.md +8 -0
- data/emass_client/ruby_client/docs/PoamResponseGet.md +8 -0
- data/emass_client/ruby_client/docs/PoamResponsePost.md +8 -0
- data/emass_client/ruby_client/docs/PoamResponsePut.md +8 -0
- data/emass_client/ruby_client/docs/Register.md +8 -0
- data/emass_client/ruby_client/docs/RegisterData.md +7 -0
- data/emass_client/ruby_client/docs/RegisterUserRequestPostBody.md +7 -0
- data/emass_client/ruby_client/docs/RegistrationApi.md +71 -0
- data/emass_client/ruby_client/docs/RoleCategory.md +10 -0
- data/emass_client/ruby_client/docs/Roles.md +9 -0
- data/emass_client/ruby_client/docs/Ssps.md +9 -0
- data/emass_client/ruby_client/docs/Stage.md +8 -0
- data/emass_client/ruby_client/docs/StaticCodeApplication.md +12 -0
- data/emass_client/ruby_client/docs/StaticCodeRequestPostBody.md +6 -0
- data/emass_client/ruby_client/docs/StaticCodeRequiredPost.md +8 -0
- data/emass_client/ruby_client/docs/StaticCodeRequiredPostApplication.md +8 -0
- data/emass_client/ruby_client/docs/StaticCodeScansApi.md +73 -0
- data/emass_client/ruby_client/docs/Success200Response.md +8 -0
- data/emass_client/ruby_client/docs/SystemIdArtifactsBody.md +10 -0
- data/emass_client/ruby_client/docs/SystemResponse.md +8 -0
- data/emass_client/ruby_client/docs/SystemRolesApi.md +137 -0
- data/emass_client/ruby_client/docs/SystemRolesCategoryResponse.md +8 -0
- data/emass_client/ruby_client/docs/SystemRolesResponse.md +8 -0
- data/emass_client/ruby_client/docs/SystemRolesResponseData.md +8 -0
- data/emass_client/ruby_client/docs/Systems.md +70 -0
- data/emass_client/ruby_client/docs/SystemsApi.md +155 -0
- data/emass_client/ruby_client/docs/Test.md +8 -0
- data/emass_client/ruby_client/docs/TestApi.md +66 -0
- data/emass_client/ruby_client/docs/TestData.md +7 -0
- data/emass_client/ruby_client/docs/TestResultsApi.md +144 -0
- data/emass_client/ruby_client/docs/TestResultsGet.md +15 -0
- data/emass_client/ruby_client/docs/TestResultsPost.md +9 -0
- data/emass_client/ruby_client/docs/TestResultsRequestPostBody.md +11 -0
- data/emass_client/ruby_client/docs/TestResultsResponseGet.md +8 -0
- data/emass_client/ruby_client/docs/TestResultsResponsePost.md +8 -0
- data/emass_client/ruby_client/docs/Users.md +9 -0
- data/emass_client/ruby_client/docs/WorkflowDefinitionGet.md +11 -0
- data/emass_client/ruby_client/docs/WorkflowDefinitionResponseGet.md +8 -0
- data/emass_client/ruby_client/docs/WorkflowDefinitionsApi.md +74 -0
- data/emass_client/ruby_client/docs/WorkflowInstancesApi.md +146 -0
- data/emass_client/ruby_client/docs/WorkflowInstancesGet.md +16 -0
- data/emass_client/ruby_client/docs/WorkflowInstancesResponseGet.md +8 -0
- data/emass_client/ruby_client/git_push.sh +55 -0
- data/emass_client/ruby_client/lib/swagger_client/api/artifacts_api.rb +310 -0
- data/emass_client/ruby_client/lib/swagger_client/api/artifacts_export_api.rb +86 -0
- data/emass_client/ruby_client/lib/swagger_client/api/cac_api.rb +143 -0
- data/emass_client/ruby_client/lib/swagger_client/api/cmmc_assessments_api.rb +77 -0
- data/emass_client/ruby_client/lib/swagger_client/api/controls_api.rb +143 -0
- data/emass_client/ruby_client/lib/swagger_client/api/milestones_api.rb +366 -0
- data/emass_client/ruby_client/lib/swagger_client/api/pac_api.rb +140 -0
- data/emass_client/ruby_client/lib/swagger_client/api/poam_api.rb +345 -0
- data/emass_client/ruby_client/lib/swagger_client/api/registration_api.rb +78 -0
- data/emass_client/ruby_client/lib/swagger_client/api/static_code_scans_api.rb +84 -0
- data/emass_client/ruby_client/lib/swagger_client/api/system_roles_api.rb +150 -0
- data/emass_client/ruby_client/lib/swagger_client/api/systems_api.rb +162 -0
- data/emass_client/ruby_client/lib/swagger_client/api/test_api.rb +70 -0
- data/emass_client/ruby_client/lib/swagger_client/api/test_results_api.rb +149 -0
- data/emass_client/ruby_client/lib/swagger_client/api/workflow_definitions_api.rb +76 -0
- data/emass_client/ruby_client/lib/swagger_client/api/workflow_instances_api.rb +153 -0
- data/emass_client/ruby_client/lib/swagger_client/api_client.rb +389 -0
- data/emass_client/ruby_client/lib/swagger_client/api_error.rb +57 -0
- data/emass_client/ruby_client/lib/swagger_client/configuration.rb +224 -0
- data/emass_client/ruby_client/lib/swagger_client/models/artifacts_delete.rb +201 -0
- data/emass_client/ruby_client/lib/swagger_client/models/artifacts_delete_inner.rb +207 -0
- data/emass_client/ruby_client/lib/swagger_client/models/artifacts_get.rb +383 -0
- data/emass_client/ruby_client/lib/swagger_client/models/artifacts_request_put_body.rb +363 -0
- data/emass_client/ruby_client/lib/swagger_client/models/artifacts_response_del.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/artifacts_response_del_data.rb +225 -0
- data/emass_client/ruby_client/lib/swagger_client/models/artifacts_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/artifacts_response_put_post.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/cac_get.rb +301 -0
- data/emass_client/ruby_client/lib/swagger_client/models/cac_request_post_body.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/cac_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/cac_response_post.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/cac_response_post_data.rb +225 -0
- data/emass_client/ruby_client/lib/swagger_client/models/cmmc_get.rb +398 -0
- data/emass_client/ruby_client/lib/swagger_client/models/cmmc_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/connectivity_ccsd.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/controls_get.rb +663 -0
- data/emass_client/ruby_client/lib/swagger_client/models/controls_put.rb +227 -0
- data/emass_client/ruby_client/lib/swagger_client/models/controls_request_put_body.rb +606 -0
- data/emass_client/ruby_client/lib/swagger_client/models/controls_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/controls_response_put.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/definition_transitions.rb +274 -0
- data/emass_client/ruby_client/lib/swagger_client/models/delete_milestone.rb +212 -0
- data/emass_client/ruby_client/lib/swagger_client/models/delete_poam.rb +212 -0
- data/emass_client/ruby_client/lib/swagger_client/models/empty200_response.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/error.rb +225 -0
- data/emass_client/ruby_client/lib/swagger_client/models/instances_transitions.rb +327 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestone_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestone_response_post.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestone_response_put.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestones_delete.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestones_get.rb +291 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestones_post.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestones_put.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestones_put_post_delete.rb +247 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestones_request_post_body.rb +242 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestones_request_put_body.rb +242 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestones_required_post.rb +227 -0
- data/emass_client/ruby_client/lib/swagger_client/models/milestones_required_put.rb +242 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_200.rb +208 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_201.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_201_meta.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_400.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_400_meta.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_400_response.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_401.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_401_meta.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_403.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_403_meta.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_404.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_404_response.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_405.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_405_meta.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_411.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_411_meta.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_490.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_490_meta.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_500.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/model_500_meta.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/pac_get.rb +311 -0
- data/emass_client/ruby_client/lib/swagger_client/models/pac_post.rb +259 -0
- data/emass_client/ruby_client/lib/swagger_client/models/pac_request_post_body.rb +261 -0
- data/emass_client/ruby_client/lib/swagger_client/models/pac_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/pac_response_post.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_delete.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_get.rb +646 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_post.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_post_put_del.rb +237 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_put.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_request_post_body.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_request_put_body.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_required_post.rb +564 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_required_put.rb +594 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_response_delete.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_response_post.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/poam_response_put.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/register.rb +215 -0
- data/emass_client/ruby_client/lib/swagger_client/models/register_data.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/register_user_request_post_body.rb +211 -0
- data/emass_client/ruby_client/lib/swagger_client/models/role_category.rb +272 -0
- data/emass_client/ruby_client/lib/swagger_client/models/roles.rb +274 -0
- data/emass_client/ruby_client/lib/swagger_client/models/ssps.rb +227 -0
- data/emass_client/ruby_client/lib/swagger_client/models/stage.rb +252 -0
- data/emass_client/ruby_client/lib/swagger_client/models/static_code_application.rb +303 -0
- data/emass_client/ruby_client/lib/swagger_client/models/static_code_request_post_body.rb +197 -0
- data/emass_client/ruby_client/lib/swagger_client/models/static_code_required_post.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/static_code_required_post_application.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/success200_response.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/system_id_artifacts_body.rb +284 -0
- data/emass_client/ruby_client/lib/swagger_client/models/system_response.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/system_roles_category_response.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/system_roles_response.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/system_roles_response_data.rb +219 -0
- data/emass_client/ruby_client/lib/swagger_client/models/systems.rb +1137 -0
- data/emass_client/ruby_client/lib/swagger_client/models/test.rb +215 -0
- data/emass_client/ruby_client/lib/swagger_client/models/test_data.rb +206 -0
- data/emass_client/ruby_client/lib/swagger_client/models/test_results_get.rb +333 -0
- data/emass_client/ruby_client/lib/swagger_client/models/test_results_post.rb +227 -0
- data/emass_client/ruby_client/lib/swagger_client/models/test_results_request_post_body.rb +306 -0
- data/emass_client/ruby_client/lib/swagger_client/models/test_results_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/test_results_response_post.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/users.rb +224 -0
- data/emass_client/ruby_client/lib/swagger_client/models/workflow_definition_get.rb +282 -0
- data/emass_client/ruby_client/lib/swagger_client/models/workflow_definition_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/models/workflow_instances_get.rb +368 -0
- data/emass_client/ruby_client/lib/swagger_client/models/workflow_instances_response_get.rb +217 -0
- data/emass_client/ruby_client/lib/swagger_client/version.rb +14 -0
- data/emass_client/ruby_client/lib/swagger_client.rb +161 -0
- data/emass_client/ruby_client/spec/api/artifacts_api_spec.rb +92 -0
- data/emass_client/ruby_client/spec/api/artifacts_export_api_spec.rb +48 -0
- data/emass_client/ruby_client/spec/api/cac_api_spec.rb +60 -0
- data/emass_client/ruby_client/spec/api/cmmc_assessments_api_spec.rb +46 -0
- data/emass_client/ruby_client/spec/api/controls_api_spec.rb +60 -0
- data/emass_client/ruby_client/spec/api/milestones_api_spec.rb +105 -0
- data/emass_client/ruby_client/spec/api/pac_api_spec.rb +59 -0
- data/emass_client/ruby_client/spec/api/poam_api_spec.rb +103 -0
- data/emass_client/ruby_client/spec/api/registration_api_spec.rb +46 -0
- data/emass_client/ruby_client/spec/api/static_code_scans_api_spec.rb +47 -0
- data/emass_client/ruby_client/spec/api/system_roles_api_spec.rb +60 -0
- data/emass_client/ruby_client/spec/api/systems_api_spec.rb +67 -0
- data/emass_client/ruby_client/spec/api/test_api_spec.rb +45 -0
- data/emass_client/ruby_client/spec/api/test_results_api_spec.rb +62 -0
- data/emass_client/ruby_client/spec/api/workflow_definitions_api_spec.rb +47 -0
- data/emass_client/ruby_client/spec/api/workflow_instances_api_spec.rb +63 -0
- data/emass_client/ruby_client/spec/api_client_spec.rb +225 -0
- data/emass_client/ruby_client/spec/base_object_spec.rb +109 -0
- data/emass_client/ruby_client/spec/configuration_spec.rb +41 -0
- data/emass_client/ruby_client/spec/models/artifacts_delete_inner_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/artifacts_delete_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/artifacts_get_spec.rb +126 -0
- data/emass_client/ruby_client/spec/models/artifacts_request_put_body_spec.rb +102 -0
- data/emass_client/ruby_client/spec/models/artifacts_response_del_data_spec.rb +52 -0
- data/emass_client/ruby_client/spec/models/artifacts_response_del_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/artifacts_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/artifacts_response_put_post_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/cac_get_spec.rb +80 -0
- data/emass_client/ruby_client/spec/models/cac_request_post_body_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/cac_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/cac_response_post_data_spec.rb +52 -0
- data/emass_client/ruby_client/spec/models/cac_response_post_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/cmmc_get_spec.rb +128 -0
- data/emass_client/ruby_client/spec/models/cmmc_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/connectivity_ccsd_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/controls_get_spec.rb +262 -0
- data/emass_client/ruby_client/spec/models/controls_put_spec.rb +52 -0
- data/emass_client/ruby_client/spec/models/controls_request_put_body_spec.rb +216 -0
- data/emass_client/ruby_client/spec/models/controls_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/controls_response_put_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/definition_transitions_spec.rb +64 -0
- data/emass_client/ruby_client/spec/models/delete_milestone_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/delete_poam_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/empty200_response_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/error_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/instances_transitions_spec.rb +86 -0
- data/emass_client/ruby_client/spec/models/milestone_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/milestone_response_post_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/milestone_response_put_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/milestones_delete_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/milestones_get_spec.rb +74 -0
- data/emass_client/ruby_client/spec/models/milestones_post_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/milestones_put_post_delete_spec.rb +64 -0
- data/emass_client/ruby_client/spec/models/milestones_put_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/milestones_request_post_body_spec.rb +52 -0
- data/emass_client/ruby_client/spec/models/milestones_request_put_body_spec.rb +52 -0
- data/emass_client/ruby_client/spec/models/milestones_required_post_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/milestones_required_put_spec.rb +52 -0
- data/emass_client/ruby_client/spec/models/model_200_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_201_meta_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/model_201_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_400_meta_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/model_400_response_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_400_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_401_meta_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/model_401_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_403_meta_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/model_403_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_404_response_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_404_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/model_405_meta_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/model_405_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_411_meta_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/model_411_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_490_meta_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/model_490_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/model_500_meta_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/model_500_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/pac_get_spec.rb +86 -0
- data/emass_client/ruby_client/spec/models/pac_post_spec.rb +56 -0
- data/emass_client/ruby_client/spec/models/pac_request_post_body_spec.rb +56 -0
- data/emass_client/ruby_client/spec/models/pac_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/pac_response_post_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/poam_delete_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/poam_get_spec.rb +264 -0
- data/emass_client/ruby_client/spec/models/poam_post_put_del_spec.rb +58 -0
- data/emass_client/ruby_client/spec/models/poam_post_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/poam_put_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/poam_request_post_body_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/poam_request_put_body_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/poam_required_post_spec.rb +218 -0
- data/emass_client/ruby_client/spec/models/poam_required_put_spec.rb +236 -0
- data/emass_client/ruby_client/spec/models/poam_response_delete_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/poam_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/poam_response_post_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/poam_response_put_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/register_data_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/register_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/register_user_request_post_body_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/role_category_spec.rb +62 -0
- data/emass_client/ruby_client/spec/models/roles_spec.rb +60 -0
- data/emass_client/ruby_client/spec/models/ssps_spec.rb +52 -0
- data/emass_client/ruby_client/spec/models/stage_spec.rb +50 -0
- data/emass_client/ruby_client/spec/models/static_code_application_spec.rb +78 -0
- data/emass_client/ruby_client/spec/models/static_code_request_post_body_spec.rb +34 -0
- data/emass_client/ruby_client/spec/models/static_code_required_post_application_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/static_code_required_post_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/success200_response_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/system_id_artifacts_body_spec.rb +66 -0
- data/emass_client/ruby_client/spec/models/system_response_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/system_roles_category_response_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/system_roles_response_data_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/system_roles_response_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/systems_spec.rb +510 -0
- data/emass_client/ruby_client/spec/models/test_data_spec.rb +40 -0
- data/emass_client/ruby_client/spec/models/test_results_get_spec.rb +96 -0
- data/emass_client/ruby_client/spec/models/test_results_post_spec.rb +52 -0
- data/emass_client/ruby_client/spec/models/test_results_request_post_body_spec.rb +68 -0
- data/emass_client/ruby_client/spec/models/test_results_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/test_results_response_post_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/test_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/users_spec.rb +52 -0
- data/emass_client/ruby_client/spec/models/workflow_definition_get_spec.rb +68 -0
- data/emass_client/ruby_client/spec/models/workflow_definition_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/models/workflow_instances_get_spec.rb +110 -0
- data/emass_client/ruby_client/spec/models/workflow_instances_response_get_spec.rb +46 -0
- data/emass_client/ruby_client/spec/spec_helper.rb +110 -0
- data/emass_client/ruby_client/swagger_client.gemspec +38 -0
- data/emass_client/swagger-codegen/ruby_template/api_client.mustache +384 -0
- data/emass_client/swagger-codegen/ruby_template/api_info.mustache +12 -0
- data/emass_client/swagger-codegen/ruby_template/configuration.mustache +234 -0
- data/emass_client/swagger-codegen/ruby_template/gemspec.mustache +37 -0
- data/emasser.gemspec +40 -0
- data/exe/emasser +5 -0
- data/lib/emasser/cli.rb +25 -0
- data/lib/emasser/configuration.rb +34 -0
- data/lib/emasser/constants.rb +18 -0
- data/lib/emasser/delete.rb +146 -0
- data/lib/emasser/errors.rb +14 -0
- data/lib/emasser/get.rb +675 -0
- data/lib/emasser/help/approvalCac_post_mapper.md +20 -0
- data/lib/emasser/help/approvalPac_post_mapper.md +20 -0
- data/lib/emasser/help/artifacts_del_mapper.md +9 -0
- data/lib/emasser/help/artifacts_post_mapper.md +59 -0
- data/lib/emasser/help/artifacts_put_mapper.md +34 -0
- data/lib/emasser/help/cmmc_get_mapper.md +4 -0
- data/lib/emasser/help/controls_put_mapper.md +74 -0
- data/lib/emasser/help/milestone_del_mapper.md +11 -0
- data/lib/emasser/help/milestone_post_mapper.md +14 -0
- data/lib/emasser/help/milestone_put_mapper.md +23 -0
- data/lib/emasser/help/poam_del_mapper.md +5 -0
- data/lib/emasser/help/poam_post_mapper.md +93 -0
- data/lib/emasser/help/poam_put_mapper.md +107 -0
- data/lib/emasser/help/staticcode_clear_mapper.md +16 -0
- data/lib/emasser/help/staticcode_post_mapper.md +21 -0
- data/lib/emasser/help/testresults_post_mapper.md +21 -0
- data/lib/emasser/help.rb +11 -0
- data/lib/emasser/input_converters.rb +21 -0
- data/lib/emasser/options_parser.rb +20 -0
- data/lib/emasser/output_converters.rb +14 -0
- data/lib/emasser/post.rb +609 -0
- data/lib/emasser/put.rb +581 -0
- data/lib/emasser/version.rb +5 -0
- data/lib/emasser.rb +19 -0
- metadata +725 -0
@@ -0,0 +1,137 @@
|
|
1
|
+
# SwaggerClient::PACApi
|
2
|
+
|
3
|
+
All URIs are relative to *http://localhost:4010*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**add_system_pac**](PACApi.md#add_system_pac) | **POST** /api/systems/{systemId}/approval/pac | Submit system package for review
|
8
|
+
[**get_system_pac**](PACApi.md#get_system_pac) | **GET** /api/systems/{systemId}/approval/pac | Get location of system package in PAC
|
9
|
+
|
10
|
+
# **add_system_pac**
|
11
|
+
> PacResponsePost add_system_pac(bodysystem_id)
|
12
|
+
|
13
|
+
Submit system package for review
|
14
|
+
|
15
|
+
Adds a Package Approval Chain (PAC) for given `systemId` path parameter
|
16
|
+
|
17
|
+
### Example
|
18
|
+
```ruby
|
19
|
+
# load the gem
|
20
|
+
require 'swagger_client'
|
21
|
+
# setup authorization
|
22
|
+
SwaggerClient.configure do |config|
|
23
|
+
# Configure API key authorization: apikey
|
24
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
25
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
26
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
27
|
+
|
28
|
+
# Configure API key authorization: mockType
|
29
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
30
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
31
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
32
|
+
|
33
|
+
# Configure API key authorization: userid
|
34
|
+
config.api_key['user-uid'] = 'YOUR API KEY'
|
35
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
36
|
+
#config.api_key_prefix['user-uid'] = 'Bearer'
|
37
|
+
end
|
38
|
+
|
39
|
+
api_instance = SwaggerClient::PACApi.new
|
40
|
+
body = SwaggerClient::PacRequestPostBody.new # PacRequestPostBody | Update an existing Artifact by Id
|
41
|
+
system_id = 56 # Integer | **System Id**: The unique system record identifier.
|
42
|
+
|
43
|
+
|
44
|
+
begin
|
45
|
+
#Submit system package for review
|
46
|
+
result = api_instance.add_system_pac(bodysystem_id)
|
47
|
+
p result
|
48
|
+
rescue SwaggerClient::ApiError => e
|
49
|
+
puts "Exception when calling PACApi->add_system_pac: #{e}"
|
50
|
+
end
|
51
|
+
```
|
52
|
+
|
53
|
+
### Parameters
|
54
|
+
|
55
|
+
Name | Type | Description | Notes
|
56
|
+
------------- | ------------- | ------------- | -------------
|
57
|
+
**body** | [**PacRequestPostBody**](PacRequestPostBody.md)| Update an existing Artifact by Id |
|
58
|
+
**system_id** | **Integer**| **System Id**: The unique system record identifier. |
|
59
|
+
|
60
|
+
### Return type
|
61
|
+
|
62
|
+
[**PacResponsePost**](PacResponsePost.md)
|
63
|
+
|
64
|
+
### Authorization
|
65
|
+
|
66
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
67
|
+
|
68
|
+
### HTTP request headers
|
69
|
+
|
70
|
+
- **Content-Type**: application/json
|
71
|
+
- **Accept**: application/json
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
# **get_system_pac**
|
76
|
+
> PacResponseGet get_system_pac(system_id)
|
77
|
+
|
78
|
+
Get location of system package in PAC
|
79
|
+
|
80
|
+
Returns the location of a system's package in the Package Approval Chain (PAC) for matching `systemId` path parameter
|
81
|
+
|
82
|
+
### Example
|
83
|
+
```ruby
|
84
|
+
# load the gem
|
85
|
+
require 'swagger_client'
|
86
|
+
# setup authorization
|
87
|
+
SwaggerClient.configure do |config|
|
88
|
+
# Configure API key authorization: apikey
|
89
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
90
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
91
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
92
|
+
|
93
|
+
# Configure API key authorization: mockType
|
94
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
95
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
96
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
97
|
+
|
98
|
+
# Configure API key authorization: userid
|
99
|
+
config.api_key['user-uid'] = 'YOUR API KEY'
|
100
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
101
|
+
#config.api_key_prefix['user-uid'] = 'Bearer'
|
102
|
+
end
|
103
|
+
|
104
|
+
api_instance = SwaggerClient::PACApi.new
|
105
|
+
system_id = 56 # Integer | **System Id**: The unique system record identifier.
|
106
|
+
|
107
|
+
|
108
|
+
begin
|
109
|
+
#Get location of system package in PAC
|
110
|
+
result = api_instance.get_system_pac(system_id)
|
111
|
+
p result
|
112
|
+
rescue SwaggerClient::ApiError => e
|
113
|
+
puts "Exception when calling PACApi->get_system_pac: #{e}"
|
114
|
+
end
|
115
|
+
```
|
116
|
+
|
117
|
+
### Parameters
|
118
|
+
|
119
|
+
Name | Type | Description | Notes
|
120
|
+
------------- | ------------- | ------------- | -------------
|
121
|
+
**system_id** | **Integer**| **System Id**: The unique system record identifier. |
|
122
|
+
|
123
|
+
### Return type
|
124
|
+
|
125
|
+
[**PacResponseGet**](PacResponseGet.md)
|
126
|
+
|
127
|
+
### Authorization
|
128
|
+
|
129
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
130
|
+
|
131
|
+
### HTTP request headers
|
132
|
+
|
133
|
+
- **Content-Type**: Not defined
|
134
|
+
- **Accept**: application/json
|
135
|
+
|
136
|
+
|
137
|
+
|
@@ -0,0 +1,346 @@
|
|
1
|
+
# SwaggerClient::POAMApi
|
2
|
+
|
3
|
+
All URIs are relative to *http://localhost:4010*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**add_poam_by_system_id**](POAMApi.md#add_poam_by_system_id) | **POST** /api/systems/{systemId}/poams | Add one or many POA&M items in a system
|
8
|
+
[**delete_poam**](POAMApi.md#delete_poam) | **DELETE** /api/systems/{systemId}/poams | Remove one or many POA&M items in a system
|
9
|
+
[**get_system_poams**](POAMApi.md#get_system_poams) | **GET** /api/systems/{systemId}/poams | Get one or many POA&M items in a system
|
10
|
+
[**get_system_poams_by_poam_id**](POAMApi.md#get_system_poams_by_poam_id) | **GET** /api/systems/{systemId}/poams/{poamId} | Get POA&M item by ID in a system
|
11
|
+
[**update_poam_by_system_id**](POAMApi.md#update_poam_by_system_id) | **PUT** /api/systems/{systemId}/poams | Update one or many POA&M items in a system
|
12
|
+
|
13
|
+
# **add_poam_by_system_id**
|
14
|
+
> PoamResponsePost add_poam_by_system_id(bodysystem_id)
|
15
|
+
|
16
|
+
Add one or many POA&M items in a system
|
17
|
+
|
18
|
+
Add a POA&M for given `systemId`<br> **Request Body Required Fields** - `status` - `vulnerabilityDescription` - `sourceIdentVuln` - `pocOrganization` - `resources` **Note**<br /> If a POC email is supplied, the application will attempt to locate a user already registered within the application and pre-populate any information not explicitly supplied in the request. If no such user is found, these fields are **required** within the request.<br> `pocFirstName`, `pocLastName`, `pocPhoneNumber`<br />
|
19
|
+
|
20
|
+
### Example
|
21
|
+
```ruby
|
22
|
+
# load the gem
|
23
|
+
require 'swagger_client'
|
24
|
+
# setup authorization
|
25
|
+
SwaggerClient.configure do |config|
|
26
|
+
# Configure API key authorization: apikey
|
27
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
28
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
29
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
30
|
+
|
31
|
+
# Configure API key authorization: mockType
|
32
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
33
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
34
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
35
|
+
|
36
|
+
# Configure API key authorization: userid
|
37
|
+
config.api_key['user-uid'] = 'YOUR API KEY'
|
38
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
39
|
+
#config.api_key_prefix['user-uid'] = 'Bearer'
|
40
|
+
end
|
41
|
+
|
42
|
+
api_instance = SwaggerClient::POAMApi.new
|
43
|
+
body = SwaggerClient::PoamRequiredPost.new # PoamRequiredPost | Update an existing control by Id
|
44
|
+
system_id = 56 # Integer | **System Id**: The unique system record identifier.
|
45
|
+
|
46
|
+
|
47
|
+
begin
|
48
|
+
#Add one or many POA&M items in a system
|
49
|
+
result = api_instance.add_poam_by_system_id(bodysystem_id)
|
50
|
+
p result
|
51
|
+
rescue SwaggerClient::ApiError => e
|
52
|
+
puts "Exception when calling POAMApi->add_poam_by_system_id: #{e}"
|
53
|
+
end
|
54
|
+
```
|
55
|
+
|
56
|
+
### Parameters
|
57
|
+
|
58
|
+
Name | Type | Description | Notes
|
59
|
+
------------- | ------------- | ------------- | -------------
|
60
|
+
**body** | [**PoamRequiredPost**](PoamRequiredPost.md)| Update an existing control by Id |
|
61
|
+
**system_id** | **Integer**| **System Id**: The unique system record identifier. |
|
62
|
+
|
63
|
+
### Return type
|
64
|
+
|
65
|
+
[**PoamResponsePost**](PoamResponsePost.md)
|
66
|
+
|
67
|
+
### Authorization
|
68
|
+
|
69
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
70
|
+
|
71
|
+
### HTTP request headers
|
72
|
+
|
73
|
+
- **Content-Type**: application/json
|
74
|
+
- **Accept**: application/json
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
# **delete_poam**
|
79
|
+
> PoamResponseDelete delete_poam(bodysystem_id)
|
80
|
+
|
81
|
+
Remove one or many POA&M items in a system
|
82
|
+
|
83
|
+
Remove the POA&M matching `systemId` path parameter and `poamId` query parameter<br>
|
84
|
+
|
85
|
+
### Example
|
86
|
+
```ruby
|
87
|
+
# load the gem
|
88
|
+
require 'swagger_client'
|
89
|
+
# setup authorization
|
90
|
+
SwaggerClient.configure do |config|
|
91
|
+
# Configure API key authorization: apikey
|
92
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
93
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
94
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
95
|
+
|
96
|
+
# Configure API key authorization: mockType
|
97
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
98
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
99
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
100
|
+
|
101
|
+
# Configure API key authorization: userid
|
102
|
+
config.api_key['user-uid'] = 'YOUR API KEY'
|
103
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
104
|
+
#config.api_key_prefix['user-uid'] = 'Bearer'
|
105
|
+
end
|
106
|
+
|
107
|
+
api_instance = SwaggerClient::POAMApi.new
|
108
|
+
body = SwaggerClient::DeletePoam.new # DeletePoam | Delete the given POA&M Id
|
109
|
+
system_id = 56 # Integer | **System Id**: The unique system record identifier.
|
110
|
+
|
111
|
+
|
112
|
+
begin
|
113
|
+
#Remove one or many POA&M items in a system
|
114
|
+
result = api_instance.delete_poam(bodysystem_id)
|
115
|
+
p result
|
116
|
+
rescue SwaggerClient::ApiError => e
|
117
|
+
puts "Exception when calling POAMApi->delete_poam: #{e}"
|
118
|
+
end
|
119
|
+
```
|
120
|
+
|
121
|
+
### Parameters
|
122
|
+
|
123
|
+
Name | Type | Description | Notes
|
124
|
+
------------- | ------------- | ------------- | -------------
|
125
|
+
**body** | [**DeletePoam**](DeletePoam.md)| Delete the given POA&M Id |
|
126
|
+
**system_id** | **Integer**| **System Id**: The unique system record identifier. |
|
127
|
+
|
128
|
+
### Return type
|
129
|
+
|
130
|
+
[**PoamResponseDelete**](PoamResponseDelete.md)
|
131
|
+
|
132
|
+
### Authorization
|
133
|
+
|
134
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
135
|
+
|
136
|
+
### HTTP request headers
|
137
|
+
|
138
|
+
- **Content-Type**: application/json
|
139
|
+
- **Accept**: application/json
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
# **get_system_poams**
|
144
|
+
> PoamResponseGet get_system_poams(system_id, opts)
|
145
|
+
|
146
|
+
Get one or many POA&M items in a system
|
147
|
+
|
148
|
+
Returns system(s) containing POA&M items for matching parameters.
|
149
|
+
|
150
|
+
### Example
|
151
|
+
```ruby
|
152
|
+
# load the gem
|
153
|
+
require 'swagger_client'
|
154
|
+
# setup authorization
|
155
|
+
SwaggerClient.configure do |config|
|
156
|
+
# Configure API key authorization: apikey
|
157
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
158
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
159
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
160
|
+
|
161
|
+
# Configure API key authorization: mockType
|
162
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
163
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
164
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
165
|
+
|
166
|
+
# Configure API key authorization: userid
|
167
|
+
config.api_key['user-uid'] = 'YOUR API KEY'
|
168
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
169
|
+
#config.api_key_prefix['user-uid'] = 'Bearer'
|
170
|
+
end
|
171
|
+
|
172
|
+
api_instance = SwaggerClient::POAMApi.new
|
173
|
+
system_id = 56 # Integer | **System Id**: The unique system record identifier.
|
174
|
+
opts = {
|
175
|
+
scheduled_completion_date_start: 'scheduled_completion_date_start_example', # String | **Date Started**: Filter query by the scheduled completion start date (Unix date format).
|
176
|
+
scheduled_completion_date_end: 'scheduled_completion_date_end_example', # String | **Date Ended**: Filter query by the scheduled completion start date (Unix date format).
|
177
|
+
control_acronyms: 'control_acronyms_example', # String | **System Acronym**: Filter query by given system acronym (single or comma separated).
|
178
|
+
ccis: 'ccis_example', # String | **CCI System**: Filter query by Control Correlation Identifiers (CCIs).
|
179
|
+
system_only: true # BOOLEAN | **Systems Only**: Indicates that only system(s) information is retrieved.
|
180
|
+
}
|
181
|
+
|
182
|
+
begin
|
183
|
+
#Get one or many POA&M items in a system
|
184
|
+
result = api_instance.get_system_poams(system_id, opts)
|
185
|
+
p result
|
186
|
+
rescue SwaggerClient::ApiError => e
|
187
|
+
puts "Exception when calling POAMApi->get_system_poams: #{e}"
|
188
|
+
end
|
189
|
+
```
|
190
|
+
|
191
|
+
### Parameters
|
192
|
+
|
193
|
+
Name | Type | Description | Notes
|
194
|
+
------------- | ------------- | ------------- | -------------
|
195
|
+
**system_id** | **Integer**| **System Id**: The unique system record identifier. |
|
196
|
+
**scheduled_completion_date_start** | **String**| **Date Started**: Filter query by the scheduled completion start date (Unix date format). | [optional]
|
197
|
+
**scheduled_completion_date_end** | **String**| **Date Ended**: Filter query by the scheduled completion start date (Unix date format). | [optional]
|
198
|
+
**control_acronyms** | **String**| **System Acronym**: Filter query by given system acronym (single or comma separated). | [optional]
|
199
|
+
**ccis** | **String**| **CCI System**: Filter query by Control Correlation Identifiers (CCIs). | [optional]
|
200
|
+
**system_only** | **BOOLEAN**| **Systems Only**: Indicates that only system(s) information is retrieved. | [optional] [default to true]
|
201
|
+
|
202
|
+
### Return type
|
203
|
+
|
204
|
+
[**PoamResponseGet**](PoamResponseGet.md)
|
205
|
+
|
206
|
+
### Authorization
|
207
|
+
|
208
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
209
|
+
|
210
|
+
### HTTP request headers
|
211
|
+
|
212
|
+
- **Content-Type**: Not defined
|
213
|
+
- **Accept**: application/json
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
# **get_system_poams_by_poam_id**
|
218
|
+
> PoamResponseGet get_system_poams_by_poam_id(system_id, poam_id)
|
219
|
+
|
220
|
+
Get POA&M item by ID in a system
|
221
|
+
|
222
|
+
Returns system(s) containing POA&M items for matching parameters.
|
223
|
+
|
224
|
+
### Example
|
225
|
+
```ruby
|
226
|
+
# load the gem
|
227
|
+
require 'swagger_client'
|
228
|
+
# setup authorization
|
229
|
+
SwaggerClient.configure do |config|
|
230
|
+
# Configure API key authorization: apikey
|
231
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
232
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
233
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
234
|
+
|
235
|
+
# Configure API key authorization: mockType
|
236
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
237
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
238
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
239
|
+
|
240
|
+
# Configure API key authorization: userid
|
241
|
+
config.api_key['user-uid'] = 'YOUR API KEY'
|
242
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
243
|
+
#config.api_key_prefix['user-uid'] = 'Bearer'
|
244
|
+
end
|
245
|
+
|
246
|
+
api_instance = SwaggerClient::POAMApi.new
|
247
|
+
system_id = 56 # Integer | **System Id**: The unique system record identifier.
|
248
|
+
poam_id = 56 # Integer | **POA&M Id**: The unique POA&M record identifier.
|
249
|
+
|
250
|
+
|
251
|
+
begin
|
252
|
+
#Get POA&M item by ID in a system
|
253
|
+
result = api_instance.get_system_poams_by_poam_id(system_id, poam_id)
|
254
|
+
p result
|
255
|
+
rescue SwaggerClient::ApiError => e
|
256
|
+
puts "Exception when calling POAMApi->get_system_poams_by_poam_id: #{e}"
|
257
|
+
end
|
258
|
+
```
|
259
|
+
|
260
|
+
### Parameters
|
261
|
+
|
262
|
+
Name | Type | Description | Notes
|
263
|
+
------------- | ------------- | ------------- | -------------
|
264
|
+
**system_id** | **Integer**| **System Id**: The unique system record identifier. |
|
265
|
+
**poam_id** | **Integer**| **POA&M Id**: The unique POA&M record identifier. |
|
266
|
+
|
267
|
+
### Return type
|
268
|
+
|
269
|
+
[**PoamResponseGet**](PoamResponseGet.md)
|
270
|
+
|
271
|
+
### Authorization
|
272
|
+
|
273
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
274
|
+
|
275
|
+
### HTTP request headers
|
276
|
+
|
277
|
+
- **Content-Type**: Not defined
|
278
|
+
- **Accept**: application/json
|
279
|
+
|
280
|
+
|
281
|
+
|
282
|
+
# **update_poam_by_system_id**
|
283
|
+
> PoamResponsePut update_poam_by_system_id(bodysystem_id)
|
284
|
+
|
285
|
+
Update one or many POA&M items in a system
|
286
|
+
|
287
|
+
Update a POA&M for given `systemId`<br> **Request Body Required Fields** - `poamId` - `displayPoamId` - `status` - `vulnerabilityDescription` - `sourceIdentVuln` - `pocOrganization` - `reviewStatus` **Notes** - If a POC email is supplied, the application will attempt to locate a user already registered within the application and pre-populate any information not explicitly supplied in the request. If no such user is found, these fields are **required** within the request.<br> `pocOrganization`, `pocFirstName`, `pocLastName`, `pocEmail`, `pocPhoneNumber`<br /> - To delete a milestone through the POA&M PUT the field `isActive` must be set to `false`: `isActive=false`.
|
288
|
+
|
289
|
+
### Example
|
290
|
+
```ruby
|
291
|
+
# load the gem
|
292
|
+
require 'swagger_client'
|
293
|
+
# setup authorization
|
294
|
+
SwaggerClient.configure do |config|
|
295
|
+
# Configure API key authorization: apikey
|
296
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
297
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
298
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
299
|
+
|
300
|
+
# Configure API key authorization: mockType
|
301
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
302
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
303
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
304
|
+
|
305
|
+
# Configure API key authorization: userid
|
306
|
+
config.api_key['user-uid'] = 'YOUR API KEY'
|
307
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
308
|
+
#config.api_key_prefix['user-uid'] = 'Bearer'
|
309
|
+
end
|
310
|
+
|
311
|
+
api_instance = SwaggerClient::POAMApi.new
|
312
|
+
body = SwaggerClient::PoamRequiredPut.new # PoamRequiredPut | Update an existing control by Id
|
313
|
+
system_id = 56 # Integer | **System Id**: The unique system record identifier.
|
314
|
+
|
315
|
+
|
316
|
+
begin
|
317
|
+
#Update one or many POA&M items in a system
|
318
|
+
result = api_instance.update_poam_by_system_id(bodysystem_id)
|
319
|
+
p result
|
320
|
+
rescue SwaggerClient::ApiError => e
|
321
|
+
puts "Exception when calling POAMApi->update_poam_by_system_id: #{e}"
|
322
|
+
end
|
323
|
+
```
|
324
|
+
|
325
|
+
### Parameters
|
326
|
+
|
327
|
+
Name | Type | Description | Notes
|
328
|
+
------------- | ------------- | ------------- | -------------
|
329
|
+
**body** | [**PoamRequiredPut**](PoamRequiredPut.md)| Update an existing control by Id |
|
330
|
+
**system_id** | **Integer**| **System Id**: The unique system record identifier. |
|
331
|
+
|
332
|
+
### Return type
|
333
|
+
|
334
|
+
[**PoamResponsePut**](PoamResponsePut.md)
|
335
|
+
|
336
|
+
### Authorization
|
337
|
+
|
338
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
339
|
+
|
340
|
+
### HTTP request headers
|
341
|
+
|
342
|
+
- **Content-Type**: application/json
|
343
|
+
- **Accept**: application/json
|
344
|
+
|
345
|
+
|
346
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# SwaggerClient::PacGet
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**system_id** | **Integer** | [Required] Unique eMASS system identifier. | [optional]
|
7
|
+
**workflow** | **String** | [Required] Values include the following:(Assess and Authorize, Assess Only, Security Plan Approval) | [optional]
|
8
|
+
**name** | **String** | [Required] Package name. 100 Characters. | [optional]
|
9
|
+
**current_stage_name** | **String** | [Read-Only] Name of the current stage in the active workflow. | [optional]
|
10
|
+
**current_stage** | **Integer** | [Read-Only] Number of the current stage in the active workflow. | [optional]
|
11
|
+
**total_stages** | **Integer** | [Read-Only] Total number of stages in the active workflow. | [optional]
|
12
|
+
**days_at_current_stage** | **Integer** | [Read-Only] Indicates the number of days at current workflow stage. | [optional]
|
13
|
+
**comments** | **String** | [Required] Comments related to package approval chain. Character Limit = 4,000. | [optional]
|
14
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# SwaggerClient::PacPost
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**workflow** | **String** | [Required] Values include the following:(Assess and Authorize, Assess Only, Security Plan Approval) | [optional]
|
7
|
+
**success** | **BOOLEAN** | | [optional]
|
8
|
+
**system_id** | **Integer** | | [optional]
|
9
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# SwaggerClient::PacRequestPostBody
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**workflow** | **String** | [Required] The PAC workflow | [optional]
|
7
|
+
**name** | **String** | [Required] Package name. 100 Characters. | [optional]
|
8
|
+
**comments** | **String** | [Required] Character Limit = 4,000. | [optional]
|
9
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::PacResponseGet
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<PacGet>**](PacGet.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::PacResponsePost
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<PacPost>**](PacPost.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# SwaggerClient::PoamGet
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**system_id** | **Integer** | [Required] Unique eMASS system identifier. | [optional]
|
7
|
+
**poam_id** | **Integer** | [Required] Unique item identifier | [optional]
|
8
|
+
**display_poam_id** | **Integer** | [Required] Globally unique identifier for individual POA&M Items, seen on the front-end as “ID”. | [optional]
|
9
|
+
**is_inherited** | **BOOLEAN** | [Read-only] Indicates whether a test result is inherited. | [optional]
|
10
|
+
**external_uid** | **String** | [Optional] Unique identifier external to the eMASS application for use with associating POA&Ms. 100 Characters. | [optional]
|
11
|
+
**control_acronyms** | **String** | [Optional] System acronym name. | [optional]
|
12
|
+
**cci** | **String** | [Optional] CCI associated with POA&M Item.. | [optional]
|
13
|
+
**status** | **String** | [Required] Values include the following: (Ongoing,Risk Accepted,Completed,Not Applicable | [optional]
|
14
|
+
**review_status** | **String** | [Read-Only] Values include the following options: (Not Approved,Under Review,Approved) | [optional]
|
15
|
+
**vulnerability_description** | **String** | [Required] Provide a description of the POA&M Item. 2000 Characters. | [optional]
|
16
|
+
**source_ident_vuln** | **String** | [Required] Include Source Identifying Vulnerability text. 2000 Characters. | [optional]
|
17
|
+
**security_checks** | **String** | [Optional] Security Checks that are associated with the POA&M. | [optional]
|
18
|
+
**milestones** | [**Array<MilestonesGet>**](MilestonesGet.md) | | [optional]
|
19
|
+
**poc_organization** | **String** | [Required] Organization/Office represented. 100 Characters. | [optional]
|
20
|
+
**poc_first_name** | **String** | [Conditional] First name of POC. 100 Characters. | [optional]
|
21
|
+
**poc_last_name** | **String** | [Conditional] Last name of POC. 100 Characters. | [optional]
|
22
|
+
**poc_email** | **String** | [Conditional] Email address of POC. 100 Characters. | [optional]
|
23
|
+
**poc_phone_number** | **String** | [Conditional] Phone number of POC (area code) ***-**** format. 100 Characters. | [optional]
|
24
|
+
**severity** | **String** | [Conditional] Required for approved items. Values include the following options (Very Low,Low,Moderate,High,Very High) | [optional]
|
25
|
+
**raw_severity** | **String** | [Optional] Values include the following options (I,II,III) | [optional]
|
26
|
+
**relevance_of_threat** | **String** | [Optional] Values include the following options: (Very Low,Low,Moderate,High,Very High) | [optional]
|
27
|
+
**likelihood** | **String** | [Optional] Values include the following options: (Very Low,Low,Moderate,High,Very High) | [optional]
|
28
|
+
**impact** | **String** | [Optional] Values include the following options: (Very Low,Low,Moderate,High,Very High) | [optional]
|
29
|
+
**impact_description** | **String** | [Optional] Include description of Security Control’s impact. | [optional]
|
30
|
+
**residual_risk_level** | **String** | [Optional] Values include the following options: (Very Low,Low,Moderate,High,Very High) | [optional]
|
31
|
+
**recommendations** | **String** | [Optional] Include recommendations. Character Limit = 2,000. | [optional]
|
32
|
+
**resources** | **String** | [Required] List of resources used. 250 Characters. | [optional]
|
33
|
+
**scheduled_completion_date** | **Integer** | [Conditional] Required for ongoing and completed POA&M items. Unix time format. | [optional]
|
34
|
+
**completion_date** | **Integer** | [Conditional] Field is required for completed POA&M items. Unix time format. | [optional]
|
35
|
+
**extension_date** | **Integer** | [Read-Only] Value returned for a POA&M Item with review status Approved” and has a milestone with a scheduled completion date that extends beyond the POA&M Item’s scheduled completion date. | [optional]
|
36
|
+
**comments** | **String** | [Conditional] Field is required for completed and risk accepted POA&M items. 2000 Characters | [optional]
|
37
|
+
**mitigation** | **String** | [Optional] Include mitigation explanation. 2000 Characters. | [optional]
|
38
|
+
**is_active** | **BOOLEAN** | [Conditional] Optionally used in PUT to delete milestones when updating a POA&M. | [optional]
|
39
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SwaggerClient::PoamPostPutDel
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**system_id** | **Integer** | The system identifier for the system being updated. | [optional]
|
7
|
+
**poam_id** | **Integer** | The newly created POAM identifier | [optional]
|
8
|
+
**external_uid** | **String** | The unique identifier external to the eMASS application for use with associating POA&Ms. 100 Characters. | [optional]
|
9
|
+
**success** | **BOOLEAN** | Indicates if operations result (success/fail) | [optional]
|
10
|
+
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# SwaggerClient::PoamRequiredPost
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**status** | **String** | [Required] Values include the following: (Ongoing,Risk Accepted,Completed,Not Applicable | [optional]
|
7
|
+
**vulnerability_description** | **String** | [Required] Provide a description of the POA&M Item. 2000 Characters. | [optional]
|
8
|
+
**source_ident_vuln** | **String** | [Required] Include Source Identifying Vulnerability text. 2000 Characters. | [optional]
|
9
|
+
**poc_organization** | **String** | [Required] Organization/Office represented. 100 Characters. | [optional]
|
10
|
+
**resources** | **String** | [Required] List of resources used. 250 Characters. | [optional]
|
11
|
+
**poc_first_name** | **String** | [Required] First name of POC. 100 Characters. | [optional]
|
12
|
+
**poc_last_name** | **String** | [Required] Last name of POC. 100 Characters. | [optional]
|
13
|
+
**poc_email** | **String** | [Required] Email address of POC. 100 Characters. | [optional]
|
14
|
+
**poc_phone_number** | **String** | [Required] Phone number of POC (area code) ***-**** format. 100 Characters. | [optional]
|
15
|
+
**external_uid** | **String** | [Optional] Unique identifier external to the eMASS application for use with associating POA&Ms. 100 Characters. | [optional]
|
16
|
+
**control_acronym** | **String** | [Optional] Control acronym associated with the POA&M Item. NIST SP 800-53 Revision 4 defined. | [optional]
|
17
|
+
**cci** | **String** | [Optional] CCI associated with POA&M. | [optional]
|
18
|
+
**security_checks** | **String** | [Optional] Security Checks that are associated with the POA&M. | [optional]
|
19
|
+
**raw_severity** | **String** | [Optional] Values include the following options (I,II,III) | [optional]
|
20
|
+
**relevance_of_threat** | **String** | [Optional] Values include the following options (Very Low, Low, Moderate,High,Very High) | [optional]
|
21
|
+
**likelihood** | **String** | [Optional] Values include the following options (Very Low, Low, Moderate,High,Very High) | [optional]
|
22
|
+
**impact** | **String** | [Optional] Values include the following options (Very Low, Low, Moderate,High,Very High) | [optional]
|
23
|
+
**impact_description** | **String** | [Optional] Include description of Security Control’s impact. | [optional]
|
24
|
+
**residual_risk_level** | **String** | [Optional] Values include the following options (Very Low, Low, Moderate,High,Very High) | [optional]
|
25
|
+
**recommendations** | **String** | [Optional] Include recommendations. Character Limit = 2,000. | [optional]
|
26
|
+
**mitigation** | **String** | [Optional] Include mitigation explanation. 2000 Characters. | [optional]
|
27
|
+
**severity** | **String** | [Conditional] Required for approved items. Values include the following options: (Very Low, Low, Moderate,High,Very High) | [optional]
|
28
|
+
**scheduled_completion_date** | **Integer** | [Conditional] Required for ongoing and completed POA&M items. Unix time format. | [optional]
|
29
|
+
**comments** | **String** | [Conditional] Field is required for completed and risk accepted POA&M items. 2000 Characters | [optional]
|
30
|
+
**completion_date** | **Integer** | [Conditional] Field is required for completed POA&M items. Unix time format. | [optional]
|
31
|
+
**milestones** | [**Array<MilestonesRequiredPost>**](MilestonesRequiredPost.md) | | [optional]
|
32
|
+
|