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,35 @@
|
|
1
|
+
# SwaggerClient::PoamRequiredPut
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**poam_id** | **Integer** | [Required] Unique item identifier | [optional]
|
7
|
+
**display_poam_id** | **Integer** | [Required] Globally unique identifier for individual POA&M Items, seen on the front-end as “ID”. | [optional]
|
8
|
+
**status** | **String** | [Required] The POA&M status | [optional]
|
9
|
+
**vulnerability_description** | **String** | [Required] Provide a description of the POA&M Item. 2000 Characters. | [optional]
|
10
|
+
**source_ident_vuln** | **String** | [Required] Include Source Identifying Vulnerability text. 2000 Characters. | [optional]
|
11
|
+
**poc_organization** | **String** | [Required] Organization/Office represented. 100 Characters. | [optional]
|
12
|
+
**resources** | **String** | [Required] List of resources used. 250 Characters. | [optional]
|
13
|
+
**external_uid** | **String** | [Optional] Unique identifier external to the eMASS application for use with associating POA&Ms. 100 Characters. | [optional]
|
14
|
+
**control_acronym** | **String** | [Optional] Control acronym associated with the POA&M Item. NIST SP 800-53 Revision 4 defined. | [optional]
|
15
|
+
**cci** | **String** | CCI associated with POA&M. | [optional]
|
16
|
+
**security_checks** | **String** | [Optional] Security Checks that are associated with the POA&M. | [optional]
|
17
|
+
**raw_severity** | **String** | [Optional] Values include the following options (I,II,III) | [optional]
|
18
|
+
**relevance_of_threat** | **String** | [Optional] Values include the following options (Very Low, Low, Moderate,High,Very High) | [optional]
|
19
|
+
**likelihood** | **String** | [Optional] Values include the following options (Very Low, Low, Moderate,High,Very High) | [optional]
|
20
|
+
**impact** | **String** | [Optional] Values include the following options (Very Low, Low, Moderate,High,Very High) | [optional]
|
21
|
+
**impact_description** | **String** | [Optional] Include description of Security Control’s impact. | [optional]
|
22
|
+
**residual_risk_level** | **String** | [Optional] Values include the following options (Very Low, Low, Moderate,High,Very High) | [optional]
|
23
|
+
**recommendations** | **String** | [Optional] Include recommendations. Character Limit = 2,000. | [optional]
|
24
|
+
**mitigation** | **String** | [Optional] Include mitigation explanation. 2000 Characters. | [optional]
|
25
|
+
**poc_first_name** | **String** | [Conditional] First name of POC. 100 Characters. | [optional]
|
26
|
+
**poc_last_name** | **String** | [Conditional] Last name of POC. 100 Characters. | [optional]
|
27
|
+
**poc_email** | **String** | [Conditional] Email address of POC. 100 Characters. | [optional]
|
28
|
+
**poc_phone_number** | **String** | [Conditional] Phone number of POC (area code) ***-**** format. 100 Characters. | [optional]
|
29
|
+
**severity** | **String** | [Conditional] Required for approved items. Values include the following options: (Very Low, Low, Moderate,High,Very High) | [optional]
|
30
|
+
**scheduled_completion_date** | **Integer** | [Conditional] Required for ongoing and completed POA&M items. Unix time format. | [optional]
|
31
|
+
**completion_date** | **Integer** | [Conditional] Field is required for completed POA&M items. Unix time format. | [optional]
|
32
|
+
**comments** | **String** | [Conditional] Field is required for completed and risk accepted POA&M items. 2000 Characters | [optional]
|
33
|
+
**is_active** | **BOOLEAN** | [Conditional] Optionally used in PUT to delete milestones when updating a POA&M. | [optional]
|
34
|
+
**milestones** | [**Array<MilestonesRequiredPut>**](MilestonesRequiredPut.md) | | [optional]
|
35
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::PoamResponseDelete
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<PoamDelete>**](PoamDelete.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::PoamResponseGet
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<PoamGet>**](PoamGet.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::PoamResponsePost
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<PoamPost>**](PoamPost.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::PoamResponsePut
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<PoamPut>**](PoamPut.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,71 @@
|
|
1
|
+
# SwaggerClient::RegistrationApi
|
2
|
+
|
3
|
+
All URIs are relative to *http://localhost:4010*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**register_user**](RegistrationApi.md#register_user) | **POST** /api/api-key | Register user certificate and obtain an API key
|
8
|
+
|
9
|
+
# **register_user**
|
10
|
+
> Register register_user(body)
|
11
|
+
|
12
|
+
Register user certificate and obtain an API key
|
13
|
+
|
14
|
+
Returns the api-key - This API key must be provided in the request header for all endpoint calls (api-key).
|
15
|
+
|
16
|
+
### Example
|
17
|
+
```ruby
|
18
|
+
# load the gem
|
19
|
+
require 'swagger_client'
|
20
|
+
# setup authorization
|
21
|
+
SwaggerClient.configure do |config|
|
22
|
+
# Configure API key authorization: apikey
|
23
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
24
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
25
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
26
|
+
|
27
|
+
# Configure API key authorization: mockType
|
28
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
29
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
30
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
31
|
+
|
32
|
+
# Configure API key authorization: userid
|
33
|
+
config.api_key['user-uid'] = 'YOUR API KEY'
|
34
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
35
|
+
#config.api_key_prefix['user-uid'] = 'Bearer'
|
36
|
+
end
|
37
|
+
|
38
|
+
api_instance = SwaggerClient::RegistrationApi.new
|
39
|
+
body = SwaggerClient::RegisterUserRequestPostBody.new # RegisterUserRequestPostBody | User certificate previously provided by eMASS.
|
40
|
+
|
41
|
+
|
42
|
+
begin
|
43
|
+
#Register user certificate and obtain an API key
|
44
|
+
result = api_instance.register_user(body)
|
45
|
+
p result
|
46
|
+
rescue SwaggerClient::ApiError => e
|
47
|
+
puts "Exception when calling RegistrationApi->register_user: #{e}"
|
48
|
+
end
|
49
|
+
```
|
50
|
+
|
51
|
+
### Parameters
|
52
|
+
|
53
|
+
Name | Type | Description | Notes
|
54
|
+
------------- | ------------- | ------------- | -------------
|
55
|
+
**body** | [**RegisterUserRequestPostBody**](RegisterUserRequestPostBody.md)| User certificate previously provided by eMASS. |
|
56
|
+
|
57
|
+
### Return type
|
58
|
+
|
59
|
+
[**Register**](Register.md)
|
60
|
+
|
61
|
+
### Authorization
|
62
|
+
|
63
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
64
|
+
|
65
|
+
### HTTP request headers
|
66
|
+
|
67
|
+
- **Content-Type**: application/json
|
68
|
+
- **Accept**: application/json
|
69
|
+
|
70
|
+
|
71
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SwaggerClient::RoleCategory
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**system_id** | **Integer** | [Read-only] Unique system record identifier. | [optional]
|
7
|
+
**system_name** | **String** | [Read-only] Name of the system record. | [optional]
|
8
|
+
**system_acronym** | **String** | [Read-only] Acronym of the system record. | [optional]
|
9
|
+
**roles** | [**Array<Roles>**](Roles.md) | | [optional]
|
10
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# SwaggerClient::Roles
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**role_category** | **String** | [Required] System role categories | [optional]
|
7
|
+
**role** | **String** | [Required] System role description | [optional]
|
8
|
+
**users** | [**Array<Users>**](Users.md) | | [optional]
|
9
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# SwaggerClient::Ssps
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**ssp_name** | **String** | [Read-Only] Name of the System Security Plan. | [optional]
|
7
|
+
**ssp_version** | **String** | [Read-Only] Version of the System Security Plan. | [optional]
|
8
|
+
**ssp_date** | **Integer** | Date of the System Security Plan. Unix date format. | [optional]
|
9
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::Stage
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**name** | **String** | [Read-Only] Name of the stage. | [optional]
|
7
|
+
**transitions** | [**Array<DefinitionTransitions>**](DefinitionTransitions.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# SwaggerClient::StaticCodeApplication
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**raw_severity** | **String** | [Optional] Scan vulnerability ratting | [optional]
|
7
|
+
**code_check_name** | **String** | [Required] Name of the software vulnerability or weakness. | [optional]
|
8
|
+
**count** | **Integer** | [Optional] Number of instances observed for a specified finding. | [optional]
|
9
|
+
**scan_date** | **Integer** | [Required] The date of the scan. Unix date format. | [optional]
|
10
|
+
**cwe_id** | **String** | [Required] The Common Weakness Enumerator (CWE) identifier. | [optional]
|
11
|
+
**clear_findings** | **BOOLEAN** | [Optional] When used by itself, can clear out all application findings for a single application/version pairing. | [optional]
|
12
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::StaticCodeRequiredPost
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**application** | [**StaticCodeRequiredPostApplication**](StaticCodeRequiredPostApplication.md) | | [optional]
|
7
|
+
**application_findings** | [**Array<StaticCodeApplication>**](StaticCodeApplication.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::StaticCodeRequiredPostApplication
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**application_name** | **String** | [Required] Name of the software application that was assessed. | [optional]
|
7
|
+
**version** | **String** | [Required] The version of the application. | [optional]
|
8
|
+
|
@@ -0,0 +1,73 @@
|
|
1
|
+
# SwaggerClient::StaticCodeScansApi
|
2
|
+
|
3
|
+
All URIs are relative to *http://localhost:4010*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**add_static_code_scans_by_system_id**](StaticCodeScansApi.md#add_static_code_scans_by_system_id) | **POST** /api/systems/{systemId}/static-code-scans | Upload static code scans or Clear static code scans
|
8
|
+
|
9
|
+
# **add_static_code_scans_by_system_id**
|
10
|
+
> Success200Response add_static_code_scans_by_system_id(bodysystem_id)
|
11
|
+
|
12
|
+
Upload static code scans or Clear static code scans
|
13
|
+
|
14
|
+
Upload or clear application scan findings into a system's `systemId` assets module. **Note:** To clear an application's findings, use only the field `clearFindings` as the Request body and set it to true.
|
15
|
+
|
16
|
+
### Example
|
17
|
+
```ruby
|
18
|
+
# load the gem
|
19
|
+
require 'swagger_client'
|
20
|
+
# setup authorization
|
21
|
+
SwaggerClient.configure do |config|
|
22
|
+
# Configure API key authorization: apikey
|
23
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
24
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
25
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
26
|
+
|
27
|
+
# Configure API key authorization: mockType
|
28
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
29
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
30
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
31
|
+
|
32
|
+
# Configure API key authorization: userid
|
33
|
+
config.api_key['user-uid'] = 'YOUR API KEY'
|
34
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
35
|
+
#config.api_key_prefix['user-uid'] = 'Bearer'
|
36
|
+
end
|
37
|
+
|
38
|
+
api_instance = SwaggerClient::StaticCodeScansApi.new
|
39
|
+
body = SwaggerClient::StaticCodeRequiredPost.new # StaticCodeRequiredPost | Update an existing Artifact by Id
|
40
|
+
system_id = 56 # Integer | **System Id**: The unique system record identifier.
|
41
|
+
|
42
|
+
|
43
|
+
begin
|
44
|
+
#Upload static code scans or Clear static code scans
|
45
|
+
result = api_instance.add_static_code_scans_by_system_id(bodysystem_id)
|
46
|
+
p result
|
47
|
+
rescue SwaggerClient::ApiError => e
|
48
|
+
puts "Exception when calling StaticCodeScansApi->add_static_code_scans_by_system_id: #{e}"
|
49
|
+
end
|
50
|
+
```
|
51
|
+
|
52
|
+
### Parameters
|
53
|
+
|
54
|
+
Name | Type | Description | Notes
|
55
|
+
------------- | ------------- | ------------- | -------------
|
56
|
+
**body** | [**StaticCodeRequiredPost**](StaticCodeRequiredPost.md)| Update an existing Artifact by Id |
|
57
|
+
**system_id** | **Integer**| **System Id**: The unique system record identifier. |
|
58
|
+
|
59
|
+
### Return type
|
60
|
+
|
61
|
+
[**Success200Response**](Success200Response.md)
|
62
|
+
|
63
|
+
### Authorization
|
64
|
+
|
65
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
66
|
+
|
67
|
+
### HTTP request headers
|
68
|
+
|
69
|
+
- **Content-Type**: application/json
|
70
|
+
- **Accept**: application/json
|
71
|
+
|
72
|
+
|
73
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::Success200Response
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<TestData>**](TestData.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# SwaggerClient::SystemIdArtifactsBody
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**is_template** | **BOOLEAN** | | [optional]
|
7
|
+
**type** | **String** | | [optional]
|
8
|
+
**category** | **String** | | [optional]
|
9
|
+
**zipper** | **String** | |
|
10
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::SystemResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<Systems>**](Systems.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,137 @@
|
|
1
|
+
# SwaggerClient::SystemRolesApi
|
2
|
+
|
3
|
+
All URIs are relative to *http://localhost:4010*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**get_system_roles**](SystemRolesApi.md#get_system_roles) | **GET** /api/system-roles | Get available roles
|
8
|
+
[**get_system_roles_by_category_id**](SystemRolesApi.md#get_system_roles_by_category_id) | **GET** /api/system-roles/{roleCategory} | Get system roles
|
9
|
+
|
10
|
+
# **get_system_roles**
|
11
|
+
> SystemRolesResponse get_system_roles
|
12
|
+
|
13
|
+
Get available roles
|
14
|
+
|
15
|
+
Returns all available roles
|
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::SystemRolesApi.new
|
40
|
+
|
41
|
+
begin
|
42
|
+
#Get available roles
|
43
|
+
result = api_instance.get_system_roles
|
44
|
+
p result
|
45
|
+
rescue SwaggerClient::ApiError => e
|
46
|
+
puts "Exception when calling SystemRolesApi->get_system_roles: #{e}"
|
47
|
+
end
|
48
|
+
```
|
49
|
+
|
50
|
+
### Parameters
|
51
|
+
This endpoint does not need any parameter.
|
52
|
+
|
53
|
+
### Return type
|
54
|
+
|
55
|
+
[**SystemRolesResponse**](SystemRolesResponse.md)
|
56
|
+
|
57
|
+
### Authorization
|
58
|
+
|
59
|
+
[apikey](../README.md#apikey), [mockType](../README.md#mockType), [userid](../README.md#userid)
|
60
|
+
|
61
|
+
### HTTP request headers
|
62
|
+
|
63
|
+
- **Content-Type**: Not defined
|
64
|
+
- **Accept**: application/json
|
65
|
+
|
66
|
+
|
67
|
+
|
68
|
+
# **get_system_roles_by_category_id**
|
69
|
+
> SystemRolesCategoryResponse get_system_roles_by_category_id(role_category, role, opts)
|
70
|
+
|
71
|
+
Get system roles
|
72
|
+
|
73
|
+
Returns the role(s) data matching parameters.
|
74
|
+
|
75
|
+
### Example
|
76
|
+
```ruby
|
77
|
+
# load the gem
|
78
|
+
require 'swagger_client'
|
79
|
+
# setup authorization
|
80
|
+
SwaggerClient.configure do |config|
|
81
|
+
# Configure API key authorization: apikey
|
82
|
+
config.api_key['api-key'] = 'YOUR API KEY'
|
83
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
84
|
+
#config.api_key_prefix['api-key'] = 'Bearer'
|
85
|
+
|
86
|
+
# Configure API key authorization: mockType
|
87
|
+
config.api_key['Prefer'] = 'YOUR API KEY'
|
88
|
+
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
89
|
+
#config.api_key_prefix['Prefer'] = 'Bearer'
|
90
|
+
|
91
|
+
# Configure API key authorization: userid
|
92
|
+
config.api_key['user-uid'] = '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['user-uid'] = 'Bearer'
|
95
|
+
end
|
96
|
+
|
97
|
+
api_instance = SwaggerClient::SystemRolesApi.new
|
98
|
+
role_category = 'role_category_example' # String | **Role Category**: The system role category been queried
|
99
|
+
role = 'IAO' # String | **Role**: Accepts single value from options available at base system-roles endpoint e.g., SCA.
|
100
|
+
opts = {
|
101
|
+
policy: 'rmf', # String | **System Policy**: Filter query by system policy. If no value is specified and more than one policy is available, the default return is the RMF policy information.
|
102
|
+
include_decommissioned: true # BOOLEAN | **Include Decommissioned Systems**: Indicates if decommissioned systems are retrieved. If no value is specified, the default returns true to include decommissioned systems.
|
103
|
+
}
|
104
|
+
|
105
|
+
begin
|
106
|
+
#Get system roles
|
107
|
+
result = api_instance.get_system_roles_by_category_id(role_category, role, opts)
|
108
|
+
p result
|
109
|
+
rescue SwaggerClient::ApiError => e
|
110
|
+
puts "Exception when calling SystemRolesApi->get_system_roles_by_category_id: #{e}"
|
111
|
+
end
|
112
|
+
```
|
113
|
+
|
114
|
+
### Parameters
|
115
|
+
|
116
|
+
Name | Type | Description | Notes
|
117
|
+
------------- | ------------- | ------------- | -------------
|
118
|
+
**role_category** | **String**| **Role Category**: The system role category been queried |
|
119
|
+
**role** | **String**| **Role**: Accepts single value from options available at base system-roles endpoint e.g., SCA. | [default to IAO]
|
120
|
+
**policy** | **String**| **System Policy**: Filter query by system policy. If no value is specified and more than one policy is available, the default return is the RMF policy information. | [optional] [default to rmf]
|
121
|
+
**include_decommissioned** | **BOOLEAN**| **Include Decommissioned Systems**: Indicates if decommissioned systems are retrieved. If no value is specified, the default returns true to include decommissioned systems. | [optional] [default to true]
|
122
|
+
|
123
|
+
### Return type
|
124
|
+
|
125
|
+
[**SystemRolesCategoryResponse**](SystemRolesCategoryResponse.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,8 @@
|
|
1
|
+
# SwaggerClient::SystemRolesCategoryResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<RoleCategory>**](RoleCategory.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::SystemRolesResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**meta** | [**Model200**](Model200.md) | | [optional]
|
7
|
+
**data** | [**Array<SystemRolesResponseData>**](SystemRolesResponseData.md) | | [optional]
|
8
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# SwaggerClient::SystemRolesResponseData
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**role_category** | **String** | | [optional] [default to 'PAC']
|
7
|
+
**role** | **String** | | [optional] [default to 'PM/IAM']
|
8
|
+
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# SwaggerClient::Systems
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**system_id** | **Integer** | [Read-only] Unique system record identifier. | [optional]
|
7
|
+
**policy** | **String** | [Read-only] RMF/DIACAP Policy identifier for the system record. | [optional]
|
8
|
+
**registration_type** | **String** | [Read-Only] Registration types parameters (assessAndAuthorize, assessOnly, guest, regular, functional, cloudServiceProvider.) | [optional]
|
9
|
+
**name** | **String** | [Read-only] Name of the system record. | [optional]
|
10
|
+
**acronym** | **String** | [Read-only] Acronym of the system record. | [optional]
|
11
|
+
**description** | **String** | [Read-only] Description of the system record. | [optional]
|
12
|
+
**system_owner** | **String** | [Read-only] Owning organization of the system record. | [optional]
|
13
|
+
**organization_name** | **String** | [Read-only] Name of the top-level component that owns the system (e.g. Navy, Air Force, Army, etc..). | [optional]
|
14
|
+
**secondary_organization** | **String** | [Read-only] Secondary organization that owns the system record (i.e. Sub-Organization-level. | [optional]
|
15
|
+
**version_release_no** | **String** | [Read-only] Version/Release Number of system record. | [optional]
|
16
|
+
**system_type** | **String** | [Read-only] Type of the system record. RMF values include the following options (IS Major Application, IS Enclave, Platform IT System). DIACAP values include the following options (Platform IT, Interconnection, AIS Application) | [optional]
|
17
|
+
**is_nss** | **BOOLEAN** | [Read-only] Is the system record a National Security System? | [optional]
|
18
|
+
**is_public_facing** | **BOOLEAN** | [Read-only] Does the system record have a public facing component/presence. | [optional]
|
19
|
+
**coams_id** | **Integer** | [Read-only] Corresponding Cyber Operational Attributes Management System (COAMS) identifier for the system record. | [optional]
|
20
|
+
**is_type_authorization** | **BOOLEAN** | [Read-only] Identifies if system is a Type Authorization. | [optional]
|
21
|
+
**ditpr_id** | **String** | [Read-only] DITPR ID of the system record. | [optional]
|
22
|
+
**authorization_status** | **String** | [Read-only] Authorization Status of the system record. | [optional]
|
23
|
+
**authorization_date** | **Integer** | [Read-only] Authorization Date of the system record. | [optional]
|
24
|
+
**authorization_termination_date** | **Integer** | [Read-only] Authorization Termination Date of the system record. | [optional]
|
25
|
+
**authorization_length** | **Integer** | [Read-only] Length of system’s Authorization. Calculated based off of Authorization Date & Authorization Termination Date. | [optional]
|
26
|
+
**terms_for_auth** | **String** | [Read-only] Terms/Conditions for receiving and maintaining the system’s Authorization. Assigned by the Authorizing Official. | [optional]
|
27
|
+
**security_plan_approval_status** | **String** | [Read-only] Status of the approval of the system’s RMF Security Plan. Values include the following options (Approved, Denied, Not Yet Approved). | [optional]
|
28
|
+
**security_plan_approval_date** | **Integer** | [Read-only] Approval date of the system’s RMF Security Plan. | [optional]
|
29
|
+
**mission_criticality** | **String** | [Read-only] Mission Criticality of the system record. Values include the following options (Mission Critical (MC), Mission Essential (ME), Mission Support (MS). | [optional]
|
30
|
+
**geographical_association** | **String** | [Read-only] Geographical Association of the system record (VA only). | [optional]
|
31
|
+
**system_ownership** | **String** | [Read-only] Ownership of the system record (VA only). | [optional]
|
32
|
+
**governing_mission_area** | **String** | [Read-only] Governing Mission Area of the system record. | [optional]
|
33
|
+
**primary_functional_area** | **String** | [Read-only] Primary functional area of the system record. | [optional]
|
34
|
+
**secondary_functional_area** | **String** | [Read-only] Secondary functional area of the system record. | [optional]
|
35
|
+
**primary_control_set** | **String** | [Read-only] Primary Control Set of the system record. RMF values include the following options (NIST SP 800-53 Revision 4), DIACAP values include the following options (DoDI 8500.2) | [optional]
|
36
|
+
**confidentiality** | **String** | [Read-only] Confidentiality of the system record. RMF values include the following options (High, Moderate, Low) | [optional]
|
37
|
+
**integrity** | **String** | [Read-only] Integrity of the system record. RMF values include the following options (High, Moderate, Low) | [optional]
|
38
|
+
**availability** | **String** | [Read-only] Availability of the system record. RMF values include the following options (High, Moderate, Low) | [optional]
|
39
|
+
**applied_overlays** | **String** | [Read-only] Overlays applied to the system record. | [optional]
|
40
|
+
**rmf_activity** | **String** | [Read-only] RMF Activity of the system record. | [optional]
|
41
|
+
**cross_domain_ticket** | **String** | [Read-only] Cross Domain Tickets of the system record. | [optional]
|
42
|
+
**ditpr_don_id** | **String** | [Read-Only] DITPR-DON identifier of the system record. | [optional]
|
43
|
+
**mac** | **String** | [Read-Only] MAC level of the system record. | [optional]
|
44
|
+
**dod_confidentiality** | **String** | [Read-Only] DoD Confidentiality level of the system record. | [optional]
|
45
|
+
**contingency_plan_tested** | **BOOLEAN** | [Read-only] Has the system record’s Contingency Plan been tested? | [optional]
|
46
|
+
**contingency_plan_test_date** | **Integer** | [Read-only] Date the system record’s Contingency Plan was tested. | [optional]
|
47
|
+
**security_review_date** | **Integer** | [Read-only] Date the system record’s Annual Security Review was conducted. | [optional]
|
48
|
+
**has_open_poam_item** | **BOOLEAN** | [Read-Only] Does the system record have an Ongoing or Risk Accepted POA&M Item? | [optional]
|
49
|
+
**has_open_poam_item90to120_past_scheduled_completion_date** | **BOOLEAN** | [Read-Only] Does the system record have an Ongoing or Risk Accepted POA&M Item 90 to 120 days past its Scheduled Completion Date? | [optional]
|
50
|
+
**has_open_poam_item120_plus_past_scheudled_completion_date** | **BOOLEAN** | [Read-Only] Does the system record have an Ongoing or Risk Accepted POA&M Item 120 days past its Scheduled Completion Date? | [optional]
|
51
|
+
**impact** | **String** | [Optional] Values include the following options (Very Low, Low, Moderate,High,Very High) | [optional]
|
52
|
+
**has_cui** | **BOOLEAN** | [Read-only] Does the system record contain and/or process Controlled Unclassified information? | [optional]
|
53
|
+
**has_pii** | **BOOLEAN** | [Read-only] Does the system record contain and/or process Personally Identifiable Information? | [optional]
|
54
|
+
**has_phi** | **BOOLEAN** | [Read-only] Does the system record contain and/or process Personal Health Information? | [optional]
|
55
|
+
**ppsm_registry_number** | **String** | [Read-only] Unique identifier for the DoD’s Ports, Protocols, and Services Management Registry system. | [optional]
|
56
|
+
**interconnected_information_system_and_identifiers** | **String** | [Read-only] Identify the interconnected information systems and corresponding identifiers within control CA-3. | [optional]
|
57
|
+
**is_pia_required** | **BOOLEAN** | [Read-only] Does the system require a Privacy Impact Assessment? | [optional]
|
58
|
+
**pia_status** | **String** | [Read-only] Status of the PIA, availability values include the following options (Not Started, In Progress, Completed) | [optional]
|
59
|
+
**pia_date** | **Integer** | [Read-only] Date in which the system’s PIA took place. | [optional]
|
60
|
+
**user_defined_field1** | **String** | [Read-only] User-defined field to augment Ad Hoc Reporting. | [optional]
|
61
|
+
**user_defined_field2** | **String** | [Read-only] User-defined field to augment Ad Hoc Reporting. | [optional]
|
62
|
+
**user_defined_field3** | **String** | [Read-only] User-defined field to augment Ad Hoc Reporting. | [optional]
|
63
|
+
**user_defined_field4** | **String** | [Read-only] User-defined field to augment Ad Hoc Reporting. | [optional]
|
64
|
+
**user_defined_field5** | **String** | [Read-only] User-defined field to augment Ad Hoc Reporting. | [optional]
|
65
|
+
**current_rmf_lifecycle_step** | **String** | [Read-only] Displays the system’s current step within the RMF Lifecycle. | [optional]
|
66
|
+
**other_information** | **String** | [Read-only] Include any additional information required by the organization. | [optional]
|
67
|
+
**reports_for_scorecard** | **BOOLEAN** | [Read-only] Indicates if the system reports to the DoD Cyber Hygiene Scorecard. | [optional]
|
68
|
+
**package** | [**Array<PacGet>**](PacGet.md) | | [optional]
|
69
|
+
**connectivity_ccsd** | [**Array<ConnectivityCcsd>**](ConnectivityCcsd.md) | | [optional]
|
70
|
+
|