Module Values.PentestJobSource

Represents a pentest job, which is an execution instance of a pentest. A pentest job progresses through preflight, static analysis, pentest, and finalizing steps.

Sourcetype nonrec t = {
  1. pentestJobId : String_.t option;
    (*

    The unique identifier of the pentest job.

    *)
  2. pentestId : String_.t option;
    (*

    The unique identifier of the pentest associated with the job.

    *)
  3. title : String_.t option;
    (*

    The title of the pentest job.

    *)
  4. overview : String_.t option;
    (*

    An overview of the pentest job results.

    *)
  5. status : JobStatus.t option;
    (*

    The current status of the pentest job.

    *)
  6. endpoints : EndpointList.t option;
    (*

    The list of endpoints being tested in the pentest job.

    *)
  7. actors : ActorList.t option;
    (*

    The list of actors used during the pentest job.

    *)
  8. documents : DocumentList.t option;
    (*

    The list of documents providing context for the pentest job.

    *)
  9. sourceCode : SourceCodeRepositoryList.t option;
    (*

    The list of source code repositories analyzed during the pentest job.

    *)
  10. excludePaths : EndpointList.t option;
    (*

    The list of paths excluded from the pentest job.

    *)
  11. allowedDomains : EndpointList.t option;
    (*

    The list of domains allowed during the pentest job.

    *)
  12. excludeRiskTypes : RiskTypeList.t option;
    (*

    The list of risk types excluded from the pentest job.

    *)
  13. steps : StepList.t option;
    (*

    The list of steps in the pentest job execution.

    *)
  14. executionContext : ExecutionContextList.t option;
    (*

    The execution context messages for the pentest job.

    *)
  15. serviceRole : ServiceRole.t option;
    (*

    The IAM service role used for the pentest job.

    *)
  16. logConfig : CloudWatchLog.t option;
    (*

    The CloudWatch Logs configuration for the pentest job.

    *)
  17. vpcConfig : VpcConfig.t option;
    (*

    The VPC configuration for the pentest job.

    *)
  18. networkTrafficConfig : NetworkTrafficConfig.t option;
    (*

    The network traffic configuration for the pentest job.

    *)
  19. errorInformation : ErrorInformation.t option;
    (*

    Error information if the pentest job encountered an error.

    *)
  20. integratedRepositories : IntegratedRepositoryList.t option;
    (*

    The list of integrated repositories associated with the pentest job.

    *)
  21. codeRemediationStrategy : CodeRemediationStrategy.t option;
    (*

    The code remediation strategy for the pentest job.

    *)
  22. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the pentest job was created, in UTC format.

    *)
  23. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the pentest job was last updated, in UTC format.

    *)
}
Sourceval make : ?pentestJobId:??? -> ?pentestId:??? -> ?title:??? -> ?overview:??? -> ?status:??? -> ?endpoints:??? -> ?actors:??? -> ?documents:??? -> ?sourceCode:??? -> ?excludePaths:??? -> ?allowedDomains:??? -> ?excludeRiskTypes:??? -> ?steps:??? -> ?executionContext:??? -> ?serviceRole:??? -> ?logConfig:??? -> ?vpcConfig:??? -> ?networkTrafficConfig:??? -> ?errorInformation:??? -> ?integratedRepositories:??? -> ?codeRemediationStrategy:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of SyntheticTimestamp_date_time.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `String of SecurityGroupArn.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of String_.t ]) list | `Timestamp of SyntheticTimestamp_date_time.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t