UNPKG

@appthreat/cdx-proto

Version:

Library to serialize/deserialize CycloneDX BOM with protocol buffers

987 lines 548 kB
// @generated by protoc-gen-es v1.7.2 with parameter "target=ts" // @generated from file bom-1.6.proto (package cyclonedx.v1_6, syntax proto3) /* eslint-disable */ // @ts-nocheck import { Message, proto3, Timestamp } from "@bufbuild/protobuf"; /** * @generated from enum cyclonedx.v1_6.Classification */ export var Classification; (function (Classification) { /** * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- `null` is our fallback, doubling `unspecified` * * @generated from enum value: CLASSIFICATION_NULL = 0; */ Classification[Classification["NULL"] = 0] = "NULL"; /** * A software application. Refer to https://en.wikipedia.org/wiki/Application_software for information about applications. * * @generated from enum value: CLASSIFICATION_APPLICATION = 1; */ Classification[Classification["APPLICATION"] = 1] = "APPLICATION"; /** * A software framework. Refer to https://en.wikipedia.org/wiki/Software_framework for information on how frameworks vary slightly from libraries. * * @generated from enum value: CLASSIFICATION_FRAMEWORK = 2; */ Classification[Classification["FRAMEWORK"] = 2] = "FRAMEWORK"; /** * A software library. Refer to https://en.wikipedia.org/wiki/Library_(computing) for information about libraries. All third-party and open source reusable components will likely be a library. If the library also has key features of a framework, then it should be classified as a framework. If not, or is unknown, then specifying library is recommended. * * @generated from enum value: CLASSIFICATION_LIBRARY = 3; */ Classification[Classification["LIBRARY"] = 3] = "LIBRARY"; /** * A software operating system without regard to deployment model (i.e. installed on physical hardware, virtual machine, image, etc) Refer to https://en.wikipedia.org/wiki/Operating_system * * @generated from enum value: CLASSIFICATION_OPERATING_SYSTEM = 4; */ Classification[Classification["OPERATING_SYSTEM"] = 4] = "OPERATING_SYSTEM"; /** * A hardware device such as a processor, or chip-set. A hardware device containing firmware should include a component for the physical hardware itself, and another component of type 'firmware' or 'operating-system' (whichever is relevant), describing information about the software running on the device. See also the list of known device properties: https://github.com/CycloneDX/cyclonedx-property-taxonomy/blob/main/cdx/device.md * * @generated from enum value: CLASSIFICATION_DEVICE = 5; */ Classification[Classification["DEVICE"] = 5] = "DEVICE"; /** * A computer file. Refer to https://en.wikipedia.org/wiki/Computer_file for information about files. * * @generated from enum value: CLASSIFICATION_FILE = 6; */ Classification[Classification["FILE"] = 6] = "FILE"; /** * A packaging and/or runtime format, not specific to any particular technology, which isolates software inside the container from software outside of a container through virtualization technology. Refer to https://en.wikipedia.org/wiki/OS-level_virtualization * * @generated from enum value: CLASSIFICATION_CONTAINER = 7; */ Classification[Classification["CONTAINER"] = 7] = "CONTAINER"; /** * A special type of software that provides low-level control over a devices hardware. Refer to https://en.wikipedia.org/wiki/Firmware * * @generated from enum value: CLASSIFICATION_FIRMWARE = 8; */ Classification[Classification["FIRMWARE"] = 8] = "FIRMWARE"; /** * A special type of software that operates or controls a particular type of device. Refer to https://en.wikipedia.org/wiki/Device_driver * * @generated from enum value: CLASSIFICATION_DEVICE_DRIVER = 9; */ Classification[Classification["DEVICE_DRIVER"] = 9] = "DEVICE_DRIVER"; /** * A runtime environment which interprets or executes software. This may include runtimes such as those that execute bytecode or low-code/no-code application platforms. * * @generated from enum value: CLASSIFICATION_PLATFORM = 10; */ Classification[Classification["PLATFORM"] = 10] = "PLATFORM"; /** * A model based on training data that can make predictions or decisions without being explicitly programmed to do so. * * @generated from enum value: CLASSIFICATION_MACHINE_LEARNING_MODEL = 11; */ Classification[Classification["MACHINE_LEARNING_MODEL"] = 11] = "MACHINE_LEARNING_MODEL"; /** * A collection of discrete values that convey information. * * @generated from enum value: CLASSIFICATION_DATA = 12; */ Classification[Classification["DATA"] = 12] = "DATA"; /** * A cryptographic asset including algorithms, protocols, certificates, keys, tokens, and secrets. * * @generated from enum value: CLASSIFICATION_CRYPTOGRAPHIC_ASSET = 13; */ Classification[Classification["CRYPTOGRAPHIC_ASSET"] = 13] = "CRYPTOGRAPHIC_ASSET"; })(Classification || (Classification = {})); // Retrieve enum metadata with: proto3.getEnumType(Classification) proto3.util.setEnumType(Classification, "cyclonedx.v1_6.Classification", [ { no: 0, name: "CLASSIFICATION_NULL" }, { no: 1, name: "CLASSIFICATION_APPLICATION" }, { no: 2, name: "CLASSIFICATION_FRAMEWORK" }, { no: 3, name: "CLASSIFICATION_LIBRARY" }, { no: 4, name: "CLASSIFICATION_OPERATING_SYSTEM" }, { no: 5, name: "CLASSIFICATION_DEVICE" }, { no: 6, name: "CLASSIFICATION_FILE" }, { no: 7, name: "CLASSIFICATION_CONTAINER" }, { no: 8, name: "CLASSIFICATION_FIRMWARE" }, { no: 9, name: "CLASSIFICATION_DEVICE_DRIVER" }, { no: 10, name: "CLASSIFICATION_PLATFORM" }, { no: 11, name: "CLASSIFICATION_MACHINE_LEARNING_MODEL" }, { no: 12, name: "CLASSIFICATION_DATA" }, { no: 13, name: "CLASSIFICATION_CRYPTOGRAPHIC_ASSET" }, ]); /** * Specifies the flow direction of the data. Valid values are: inbound, outbound, bi-directional, and unknown. Direction is relative to the service. Inbound flow states that data enters the service. Outbound flow states that data leaves the service. Bi-directional states that data flows both ways, and unknown states that the direction is not known. * buf:lint:ignore ENUM_VALUE_PREFIX -- Enum value names should be prefixed with "DATA_FLOW_DIRECTION_" * * @generated from enum cyclonedx.v1_6.DataFlowDirection */ export var DataFlowDirection; (function (DataFlowDirection) { /** * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- `null` is our fallback, doubling `unspecified` * * @generated from enum value: DATA_FLOW_NULL = 0; */ DataFlowDirection[DataFlowDirection["DATA_FLOW_NULL"] = 0] = "DATA_FLOW_NULL"; /** * @generated from enum value: DATA_FLOW_INBOUND = 1; */ DataFlowDirection[DataFlowDirection["DATA_FLOW_INBOUND"] = 1] = "DATA_FLOW_INBOUND"; /** * @generated from enum value: DATA_FLOW_OUTBOUND = 2; */ DataFlowDirection[DataFlowDirection["DATA_FLOW_OUTBOUND"] = 2] = "DATA_FLOW_OUTBOUND"; /** * @generated from enum value: DATA_FLOW_BI_DIRECTIONAL = 3; */ DataFlowDirection[DataFlowDirection["DATA_FLOW_BI_DIRECTIONAL"] = 3] = "DATA_FLOW_BI_DIRECTIONAL"; /** * @generated from enum value: DATA_FLOW_UNKNOWN = 4; */ DataFlowDirection[DataFlowDirection["DATA_FLOW_UNKNOWN"] = 4] = "DATA_FLOW_UNKNOWN"; })(DataFlowDirection || (DataFlowDirection = {})); // Retrieve enum metadata with: proto3.getEnumType(DataFlowDirection) proto3.util.setEnumType(DataFlowDirection, "cyclonedx.v1_6.DataFlowDirection", [ { no: 0, name: "DATA_FLOW_NULL" }, { no: 1, name: "DATA_FLOW_INBOUND" }, { no: 2, name: "DATA_FLOW_OUTBOUND" }, { no: 3, name: "DATA_FLOW_BI_DIRECTIONAL" }, { no: 4, name: "DATA_FLOW_UNKNOWN" }, ]); /** * @generated from enum cyclonedx.v1_6.ExternalReferenceType */ export var ExternalReferenceType; (function (ExternalReferenceType) { /** * Use this if no other types accurately describe the purpose of the external reference * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- `other` is our fallback, doubling `unspecified` * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_OTHER = 0; */ ExternalReferenceType[ExternalReferenceType["OTHER"] = 0] = "OTHER"; /** * Version Control System * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_VCS = 1; */ ExternalReferenceType[ExternalReferenceType["VCS"] = 1] = "VCS"; /** * Issue, defect tracking system, or an Application Lifecycle Management (ALM) system * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_ISSUE_TRACKER = 2; */ ExternalReferenceType[ExternalReferenceType["ISSUE_TRACKER"] = 2] = "ISSUE_TRACKER"; /** * Website * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_WEBSITE = 3; */ ExternalReferenceType[ExternalReferenceType["WEBSITE"] = 3] = "WEBSITE"; /** * Security advisories * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_ADVISORIES = 4; */ ExternalReferenceType[ExternalReferenceType["ADVISORIES"] = 4] = "ADVISORIES"; /** * Bill-of-material document (CycloneDX, SPDX, SWID, etc) * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_BOM = 5; */ ExternalReferenceType[ExternalReferenceType["BOM"] = 5] = "BOM"; /** * Mailing list or discussion group * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_MAILING_LIST = 6; */ ExternalReferenceType[ExternalReferenceType["MAILING_LIST"] = 6] = "MAILING_LIST"; /** * Social media account * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_SOCIAL = 7; */ ExternalReferenceType[ExternalReferenceType["SOCIAL"] = 7] = "SOCIAL"; /** * Real-time chat platform * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_CHAT = 8; */ ExternalReferenceType[ExternalReferenceType["CHAT"] = 8] = "CHAT"; /** * Documentation, guides, or how-to instructions * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_DOCUMENTATION = 9; */ ExternalReferenceType[ExternalReferenceType["DOCUMENTATION"] = 9] = "DOCUMENTATION"; /** * Community or commercial support * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_SUPPORT = 10; */ ExternalReferenceType[ExternalReferenceType["SUPPORT"] = 10] = "SUPPORT"; /** * Direct or repository download location * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_DISTRIBUTION = 11; */ ExternalReferenceType[ExternalReferenceType["DISTRIBUTION"] = 11] = "DISTRIBUTION"; /** * The URL to the license file. If a license URL has been defined in the license node, it should also be defined as an external reference for completeness * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_LICENSE = 12; */ ExternalReferenceType[ExternalReferenceType["LICENSE"] = 12] = "LICENSE"; /** * Build-system specific meta file (i.e. pom.xml, package.json, .nuspec, etc) * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_BUILD_META = 13; */ ExternalReferenceType[ExternalReferenceType["BUILD_META"] = 13] = "BUILD_META"; /** * URL to an automated build system * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_BUILD_SYSTEM = 14; */ ExternalReferenceType[ExternalReferenceType["BUILD_SYSTEM"] = 14] = "BUILD_SYSTEM"; /** * Specifies a way to contact the maintainer, supplier, or provider in the event of a security incident. Common URIs include links to a disclosure procedure, a mailto (RFC-2368) that specifies an email address, a tel (RFC-3966) that specifies a phone number, or dns (RFC-4501) that specifies the records containing DNS Security TXT. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_SECURITY_CONTACT = 15; */ ExternalReferenceType[ExternalReferenceType["SECURITY_CONTACT"] = 15] = "SECURITY_CONTACT"; /** * Human or machine-readable statements containing facts, evidence, or testimony * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_ATTESTATION = 16; */ ExternalReferenceType[ExternalReferenceType["ATTESTATION"] = 16] = "ATTESTATION"; /** * An enumeration of identified weaknesses, threats, and countermeasures, dataflow diagram (DFD), attack tree, and other supporting documentation in human-readable or machine-readable format * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_THREAT_MODEL = 17; */ ExternalReferenceType[ExternalReferenceType["THREAT_MODEL"] = 17] = "THREAT_MODEL"; /** * The defined assumptions, goals, and capabilities of an adversary. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_ADVERSARY_MODEL = 18; */ ExternalReferenceType[ExternalReferenceType["ADVERSARY_MODEL"] = 18] = "ADVERSARY_MODEL"; /** * Identifies and analyzes the potential of future events that may negatively impact individuals, assets, and/or the environment. Risk assessments may also include judgments on the tolerability of each risk. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_RISK_ASSESSMENT = 19; */ ExternalReferenceType[ExternalReferenceType["RISK_ASSESSMENT"] = 19] = "RISK_ASSESSMENT"; /** * The location where a component was published. This is often the same as "distribution" but may also include specialized publishing processes that act as an intermediary * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_DISTRIBUTION_INTAKE = 20; */ ExternalReferenceType[ExternalReferenceType["DISTRIBUTION_INTAKE"] = 20] = "DISTRIBUTION_INTAKE"; /** * A Vulnerability Disclosure Report (VDR) which asserts the known and previously unknown vulnerabilities that affect a component, service, or product including the analysis and findings describing the impact (or lack of impact) that the reported vulnerability has on a component, service, or product * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_VULNERABILITY_ASSERTION = 21; */ ExternalReferenceType[ExternalReferenceType["VULNERABILITY_ASSERTION"] = 21] = "VULNERABILITY_ASSERTION"; /** * A Vulnerability Exploitability eXchange (VEX) asserts the known vulnerabilities that do not affect a product, product family, or organization, and optionally, the ones that do. The VEX should include the analysis and findings describing the impact (or lack of impact) that the reported vulnerability has on the product, product family, or organization * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_EXPLOITABILITY_STATEMENT = 22; */ ExternalReferenceType[ExternalReferenceType["EXPLOITABILITY_STATEMENT"] = 22] = "EXPLOITABILITY_STATEMENT"; /** * Results from an authorized simulated cyberattack on a component or service, otherwise known as a penetration test * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_PENTEST_REPORT = 23; */ ExternalReferenceType[ExternalReferenceType["PENTEST_REPORT"] = 23] = "PENTEST_REPORT"; /** * SARIF or proprietary machine or human-readable report for which static analysis has identified code quality, security, and other potential issues with the source code * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_STATIC_ANALYSIS_REPORT = 24; */ ExternalReferenceType[ExternalReferenceType["STATIC_ANALYSIS_REPORT"] = 24] = "STATIC_ANALYSIS_REPORT"; /** * Dynamic analysis report that has identified issues such as vulnerabilities and misconfigurations * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_DYNAMIC_ANALYSIS_REPORT = 25; */ ExternalReferenceType[ExternalReferenceType["DYNAMIC_ANALYSIS_REPORT"] = 25] = "DYNAMIC_ANALYSIS_REPORT"; /** * Report generated by analyzing the call stack of a running application * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_RUNTIME_ANALYSIS_REPORT = 26; */ ExternalReferenceType[ExternalReferenceType["RUNTIME_ANALYSIS_REPORT"] = 26] = "RUNTIME_ANALYSIS_REPORT"; /** * Report generated by Software Composition Analysis (SCA), container analysis, or other forms of component analysis * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_COMPONENT_ANALYSIS_REPORT = 27; */ ExternalReferenceType[ExternalReferenceType["COMPONENT_ANALYSIS_REPORT"] = 27] = "COMPONENT_ANALYSIS_REPORT"; /** * Report containing a formal assessment of an organization, business unit, or team against a maturity model * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_MATURITY_REPORT = 28; */ ExternalReferenceType[ExternalReferenceType["MATURITY_REPORT"] = 28] = "MATURITY_REPORT"; /** * Industry, regulatory, or other certification from an accredited (if applicable) certification body * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_CERTIFICATION_REPORT = 29; */ ExternalReferenceType[ExternalReferenceType["CERTIFICATION_REPORT"] = 29] = "CERTIFICATION_REPORT"; /** * Report or system in which quality metrics can be obtained * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_QUALITY_METRICS = 30; */ ExternalReferenceType[ExternalReferenceType["QUALITY_METRICS"] = 30] = "QUALITY_METRICS"; /** * Code or configuration that defines and provisions virtualized infrastructure, commonly referred to as Infrastructure as Code (IaC) * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_CODIFIED_INFRASTRUCTURE = 31; */ ExternalReferenceType[ExternalReferenceType["CODIFIED_INFRASTRUCTURE"] = 31] = "CODIFIED_INFRASTRUCTURE"; /** * A model card describes the intended uses of a machine learning model, potential limitations, biases, ethical considerations, training parameters, datasets used to train the model, performance metrics, and other relevant data useful for ML transparency. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_MODEL_CARD = 32; */ ExternalReferenceType[ExternalReferenceType["MODEL_CARD"] = 32] = "MODEL_CARD"; /** * Plans of Action and Milestones (POAM) complement an "attestation" external reference. POAM is defined by NIST as a "document that identifies tasks needing to be accomplished. It details resources required to accomplish the elements of the plan, any milestones in meeting the tasks and scheduled completion dates for the milestones". * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_POAM = 33; */ ExternalReferenceType[ExternalReferenceType["POAM"] = 33] = "POAM"; /** * A record of events that occurred in a computer system or application, such as problems, errors, or information on current operations. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_LOG = 34; */ ExternalReferenceType[ExternalReferenceType["LOG"] = 34] = "LOG"; /** * Parameters or settings that may be used by other components or services. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_CONFIGURATION = 35; */ ExternalReferenceType[ExternalReferenceType["CONFIGURATION"] = 35] = "CONFIGURATION"; /** * Information used to substantiate a claim. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_EVIDENCE = 36; */ ExternalReferenceType[ExternalReferenceType["EVIDENCE"] = 36] = "EVIDENCE"; /** * Describes how a component or service was manufactured or deployed. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_FORMULATION = 37; */ ExternalReferenceType[ExternalReferenceType["FORMULATION"] = 37] = "FORMULATION"; /** * The location where the source code distributable can be obtained. This is often an archive format such as zip or tar.gz. The source-distribution type complements the use of the version control (vcs) type. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_SOURCE_DISTRIBUTION = 38; */ ExternalReferenceType[ExternalReferenceType["SOURCE_DISTRIBUTION"] = 38] = "SOURCE_DISTRIBUTION"; /** * An e-signature is commonly a scanned representation of a written signature or a stylized script of the person's name. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_ELECTRONIC_SIGNATURE = 39; */ ExternalReferenceType[ExternalReferenceType["ELECTRONIC_SIGNATURE"] = 39] = "ELECTRONIC_SIGNATURE"; /** * A signature that leverages cryptography, typically public/private key pairs, which provides strong authenticity verification. * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_DIGITAL_SIGNATURE = 40; */ ExternalReferenceType[ExternalReferenceType["DIGITAL_SIGNATURE"] = 40] = "DIGITAL_SIGNATURE"; /** * Document that complies with RFC-9116 (A File Format to Aid in Security Vulnerability Disclosure) * * @generated from enum value: EXTERNAL_REFERENCE_TYPE_RFC_9116 = 41; */ ExternalReferenceType[ExternalReferenceType["RFC_9116"] = 41] = "RFC_9116"; })(ExternalReferenceType || (ExternalReferenceType = {})); // Retrieve enum metadata with: proto3.getEnumType(ExternalReferenceType) proto3.util.setEnumType(ExternalReferenceType, "cyclonedx.v1_6.ExternalReferenceType", [ { no: 0, name: "EXTERNAL_REFERENCE_TYPE_OTHER" }, { no: 1, name: "EXTERNAL_REFERENCE_TYPE_VCS" }, { no: 2, name: "EXTERNAL_REFERENCE_TYPE_ISSUE_TRACKER" }, { no: 3, name: "EXTERNAL_REFERENCE_TYPE_WEBSITE" }, { no: 4, name: "EXTERNAL_REFERENCE_TYPE_ADVISORIES" }, { no: 5, name: "EXTERNAL_REFERENCE_TYPE_BOM" }, { no: 6, name: "EXTERNAL_REFERENCE_TYPE_MAILING_LIST" }, { no: 7, name: "EXTERNAL_REFERENCE_TYPE_SOCIAL" }, { no: 8, name: "EXTERNAL_REFERENCE_TYPE_CHAT" }, { no: 9, name: "EXTERNAL_REFERENCE_TYPE_DOCUMENTATION" }, { no: 10, name: "EXTERNAL_REFERENCE_TYPE_SUPPORT" }, { no: 11, name: "EXTERNAL_REFERENCE_TYPE_DISTRIBUTION" }, { no: 12, name: "EXTERNAL_REFERENCE_TYPE_LICENSE" }, { no: 13, name: "EXTERNAL_REFERENCE_TYPE_BUILD_META" }, { no: 14, name: "EXTERNAL_REFERENCE_TYPE_BUILD_SYSTEM" }, { no: 15, name: "EXTERNAL_REFERENCE_TYPE_SECURITY_CONTACT" }, { no: 16, name: "EXTERNAL_REFERENCE_TYPE_ATTESTATION" }, { no: 17, name: "EXTERNAL_REFERENCE_TYPE_THREAT_MODEL" }, { no: 18, name: "EXTERNAL_REFERENCE_TYPE_ADVERSARY_MODEL" }, { no: 19, name: "EXTERNAL_REFERENCE_TYPE_RISK_ASSESSMENT" }, { no: 20, name: "EXTERNAL_REFERENCE_TYPE_DISTRIBUTION_INTAKE" }, { no: 21, name: "EXTERNAL_REFERENCE_TYPE_VULNERABILITY_ASSERTION" }, { no: 22, name: "EXTERNAL_REFERENCE_TYPE_EXPLOITABILITY_STATEMENT" }, { no: 23, name: "EXTERNAL_REFERENCE_TYPE_PENTEST_REPORT" }, { no: 24, name: "EXTERNAL_REFERENCE_TYPE_STATIC_ANALYSIS_REPORT" }, { no: 25, name: "EXTERNAL_REFERENCE_TYPE_DYNAMIC_ANALYSIS_REPORT" }, { no: 26, name: "EXTERNAL_REFERENCE_TYPE_RUNTIME_ANALYSIS_REPORT" }, { no: 27, name: "EXTERNAL_REFERENCE_TYPE_COMPONENT_ANALYSIS_REPORT" }, { no: 28, name: "EXTERNAL_REFERENCE_TYPE_MATURITY_REPORT" }, { no: 29, name: "EXTERNAL_REFERENCE_TYPE_CERTIFICATION_REPORT" }, { no: 30, name: "EXTERNAL_REFERENCE_TYPE_QUALITY_METRICS" }, { no: 31, name: "EXTERNAL_REFERENCE_TYPE_CODIFIED_INFRASTRUCTURE" }, { no: 32, name: "EXTERNAL_REFERENCE_TYPE_MODEL_CARD" }, { no: 33, name: "EXTERNAL_REFERENCE_TYPE_POAM" }, { no: 34, name: "EXTERNAL_REFERENCE_TYPE_LOG" }, { no: 35, name: "EXTERNAL_REFERENCE_TYPE_CONFIGURATION" }, { no: 36, name: "EXTERNAL_REFERENCE_TYPE_EVIDENCE" }, { no: 37, name: "EXTERNAL_REFERENCE_TYPE_FORMULATION" }, { no: 38, name: "EXTERNAL_REFERENCE_TYPE_SOURCE_DISTRIBUTION" }, { no: 39, name: "EXTERNAL_REFERENCE_TYPE_ELECTRONIC_SIGNATURE" }, { no: 40, name: "EXTERNAL_REFERENCE_TYPE_DIGITAL_SIGNATURE" }, { no: 41, name: "EXTERNAL_REFERENCE_TYPE_RFC_9116" }, ]); /** * @generated from enum cyclonedx.v1_6.HashAlg */ export var HashAlg; (function (HashAlg) { /** * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- `null` is our fallback, doubling `unspecified` * * @generated from enum value: HASH_ALG_NULL = 0; */ HashAlg[HashAlg["NULL"] = 0] = "NULL"; /** * @generated from enum value: HASH_ALG_MD_5 = 1; */ HashAlg[HashAlg["MD_5"] = 1] = "MD_5"; /** * @generated from enum value: HASH_ALG_SHA_1 = 2; */ HashAlg[HashAlg["SHA_1"] = 2] = "SHA_1"; /** * @generated from enum value: HASH_ALG_SHA_256 = 3; */ HashAlg[HashAlg["SHA_256"] = 3] = "SHA_256"; /** * @generated from enum value: HASH_ALG_SHA_384 = 4; */ HashAlg[HashAlg["SHA_384"] = 4] = "SHA_384"; /** * @generated from enum value: HASH_ALG_SHA_512 = 5; */ HashAlg[HashAlg["SHA_512"] = 5] = "SHA_512"; /** * @generated from enum value: HASH_ALG_SHA_3_256 = 6; */ HashAlg[HashAlg["SHA_3_256"] = 6] = "SHA_3_256"; /** * @generated from enum value: HASH_ALG_SHA_3_384 = 7; */ HashAlg[HashAlg["SHA_3_384"] = 7] = "SHA_3_384"; /** * @generated from enum value: HASH_ALG_SHA_3_512 = 8; */ HashAlg[HashAlg["SHA_3_512"] = 8] = "SHA_3_512"; /** * @generated from enum value: HASH_ALG_BLAKE_2_B_256 = 9; */ HashAlg[HashAlg["BLAKE_2_B_256"] = 9] = "BLAKE_2_B_256"; /** * @generated from enum value: HASH_ALG_BLAKE_2_B_384 = 10; */ HashAlg[HashAlg["BLAKE_2_B_384"] = 10] = "BLAKE_2_B_384"; /** * @generated from enum value: HASH_ALG_BLAKE_2_B_512 = 11; */ HashAlg[HashAlg["BLAKE_2_B_512"] = 11] = "BLAKE_2_B_512"; /** * @generated from enum value: HASH_ALG_BLAKE_3 = 12; */ HashAlg[HashAlg["BLAKE_3"] = 12] = "BLAKE_3"; })(HashAlg || (HashAlg = {})); // Retrieve enum metadata with: proto3.getEnumType(HashAlg) proto3.util.setEnumType(HashAlg, "cyclonedx.v1_6.HashAlg", [ { no: 0, name: "HASH_ALG_NULL" }, { no: 1, name: "HASH_ALG_MD_5" }, { no: 2, name: "HASH_ALG_SHA_1" }, { no: 3, name: "HASH_ALG_SHA_256" }, { no: 4, name: "HASH_ALG_SHA_384" }, { no: 5, name: "HASH_ALG_SHA_512" }, { no: 6, name: "HASH_ALG_SHA_3_256" }, { no: 7, name: "HASH_ALG_SHA_3_384" }, { no: 8, name: "HASH_ALG_SHA_3_512" }, { no: 9, name: "HASH_ALG_BLAKE_2_B_256" }, { no: 10, name: "HASH_ALG_BLAKE_2_B_384" }, { no: 11, name: "HASH_ALG_BLAKE_2_B_512" }, { no: 12, name: "HASH_ALG_BLAKE_3" }, ]); /** * @generated from enum cyclonedx.v1_6.IssueClassification */ export var IssueClassification; (function (IssueClassification) { /** * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- `null` is our fallback, doubling `unspecified` * * @generated from enum value: ISSUE_CLASSIFICATION_NULL = 0; */ IssueClassification[IssueClassification["NULL"] = 0] = "NULL"; /** * A fault, flaw, or bug in software * * @generated from enum value: ISSUE_CLASSIFICATION_DEFECT = 1; */ IssueClassification[IssueClassification["DEFECT"] = 1] = "DEFECT"; /** * A new feature or behavior in software * * @generated from enum value: ISSUE_CLASSIFICATION_ENHANCEMENT = 2; */ IssueClassification[IssueClassification["ENHANCEMENT"] = 2] = "ENHANCEMENT"; /** * A special type of defect which impacts security * * @generated from enum value: ISSUE_CLASSIFICATION_SECURITY = 3; */ IssueClassification[IssueClassification["SECURITY"] = 3] = "SECURITY"; })(IssueClassification || (IssueClassification = {})); // Retrieve enum metadata with: proto3.getEnumType(IssueClassification) proto3.util.setEnumType(IssueClassification, "cyclonedx.v1_6.IssueClassification", [ { no: 0, name: "ISSUE_CLASSIFICATION_NULL" }, { no: 1, name: "ISSUE_CLASSIFICATION_DEFECT" }, { no: 2, name: "ISSUE_CLASSIFICATION_ENHANCEMENT" }, { no: 3, name: "ISSUE_CLASSIFICATION_SECURITY" }, ]); /** * Declared licenses and concluded licenses represent two different stages in the licensing process within software development. Declared licenses refer to the initial intention of the software authors regarding the licensing terms under which their code is released. On the other hand, concluded licenses are the result of a comprehensive analysis of the project's codebase to identify and confirm the actual licenses of the components used, which may differ from the initially declared licenses. While declared licenses provide an upfront indication of the licensing intentions, concluded licenses offer a more thorough understanding of the actual licensing within a project, facilitating proper compliance and risk management. Observed licenses are defined in `@.evidence.licenses`. Observed licenses form the evidence necessary to substantiate a concluded license. * * @generated from enum cyclonedx.v1_6.LicenseAcknowledgementEnumeration */ export var LicenseAcknowledgementEnumeration; (function (LicenseAcknowledgementEnumeration) { /** * The license acknowledgement is not specified. * * @generated from enum value: LICENSE_ACKNOWLEDGEMENT_ENUMERATION_UNSPECIFIED = 0; */ LicenseAcknowledgementEnumeration[LicenseAcknowledgementEnumeration["UNSPECIFIED"] = 0] = "UNSPECIFIED"; /** * Declared licenses represent the initial intentions of authors regarding the licensing terms of their code. * * @generated from enum value: LICENSE_ACKNOWLEDGEMENT_ENUMERATION_DECLARED = 1; */ LicenseAcknowledgementEnumeration[LicenseAcknowledgementEnumeration["DECLARED"] = 1] = "DECLARED"; /** * Concluded licenses are verified and confirmed. * * @generated from enum value: LICENSE_ACKNOWLEDGEMENT_ENUMERATION_CONCLUDED = 2; */ LicenseAcknowledgementEnumeration[LicenseAcknowledgementEnumeration["CONCLUDED"] = 2] = "CONCLUDED"; })(LicenseAcknowledgementEnumeration || (LicenseAcknowledgementEnumeration = {})); // Retrieve enum metadata with: proto3.getEnumType(LicenseAcknowledgementEnumeration) proto3.util.setEnumType(LicenseAcknowledgementEnumeration, "cyclonedx.v1_6.LicenseAcknowledgementEnumeration", [ { no: 0, name: "LICENSE_ACKNOWLEDGEMENT_ENUMERATION_UNSPECIFIED" }, { no: 1, name: "LICENSE_ACKNOWLEDGEMENT_ENUMERATION_DECLARED" }, { no: 2, name: "LICENSE_ACKNOWLEDGEMENT_ENUMERATION_CONCLUDED" }, ]); /** * buf:lint:ignore ENUM_VALUE_PREFIX -- Enum value names should be prefixed with "LICENSING_TYPE_ENUM_" * * @generated from enum cyclonedx.v1_6.LicensingTypeEnum */ export var LicensingTypeEnum; (function (LicensingTypeEnum) { /** * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- `null` is our fallback, doubling `unspecified` * * @generated from enum value: LICENSING_TYPE_NULL = 0; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_NULL"] = 0] = "LICENSING_TYPE_NULL"; /** * A license that grants use of software solely for the purpose of education or research. * * @generated from enum value: LICENSING_TYPE_ACADEMIC = 1; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_ACADEMIC"] = 1] = "LICENSING_TYPE_ACADEMIC"; /** * A license covering use of software embedded in a specific piece of hardware. * * @generated from enum value: LICENSING_TYPE_APPLIANCE = 2; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_APPLIANCE"] = 2] = "LICENSING_TYPE_APPLIANCE"; /** * A Client Access License (CAL) allows client computers to access services provided by server software. * * @generated from enum value: LICENSING_TYPE_CLIENT_ACCESS = 3; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_CLIENT_ACCESS"] = 3] = "LICENSING_TYPE_CLIENT_ACCESS"; /** * A Concurrent User license (aka floating license) limits the number of licenses for a software application and licenses are shared among a larger number of users. * * @generated from enum value: LICENSING_TYPE_CONCURRENT_USER = 4; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_CONCURRENT_USER"] = 4] = "LICENSING_TYPE_CONCURRENT_USER"; /** * A license where the core of a computer's processor is assigned a specific number of points. * * @generated from enum value: LICENSING_TYPE_CORE_POINTS = 5; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_CORE_POINTS"] = 5] = "LICENSING_TYPE_CORE_POINTS"; /** * A license for which consumption is measured by non-standard metrics. * * @generated from enum value: LICENSING_TYPE_CUSTOM_METRIC = 6; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_CUSTOM_METRIC"] = 6] = "LICENSING_TYPE_CUSTOM_METRIC"; /** * A license that covers a defined number of installations on computers and other types of devices. * * @generated from enum value: LICENSING_TYPE_DEVICE = 7; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_DEVICE"] = 7] = "LICENSING_TYPE_DEVICE"; /** * A license that grants permission to install and use software for trial purposes. * * @generated from enum value: LICENSING_TYPE_EVALUATION = 8; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_EVALUATION"] = 8] = "LICENSING_TYPE_EVALUATION"; /** * A license that grants access to the software to one or more pre-defined users. * * @generated from enum value: LICENSING_TYPE_NAMED_USER = 9; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_NAMED_USER"] = 9] = "LICENSING_TYPE_NAMED_USER"; /** * A license that grants access to the software on one or more pre-defined computers or devices. * * @generated from enum value: LICENSING_TYPE_NODE_LOCKED = 10; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_NODE_LOCKED"] = 10] = "LICENSING_TYPE_NODE_LOCKED"; /** * An Original Equipment Manufacturer license that is delivered with hardware, cannot be transferred to other hardware, and is valid for the life of the hardware. * * @generated from enum value: LICENSING_TYPE_OEM = 11; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_OEM"] = 11] = "LICENSING_TYPE_OEM"; /** * A license where the software is sold on a one-time basis and the licensee can use a copy of the software indefinitely. * * @generated from enum value: LICENSING_TYPE_PERPETUAL = 12; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_PERPETUAL"] = 12] = "LICENSING_TYPE_PERPETUAL"; /** * A license where each installation consumes points per processor. * * @generated from enum value: LICENSING_TYPE_PROCESSOR_POINTS = 13; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_PROCESSOR_POINTS"] = 13] = "LICENSING_TYPE_PROCESSOR_POINTS"; /** * A license where the licensee pays a fee to use the software or service. * * @generated from enum value: LICENSING_TYPE_SUBSCRIPTION = 14; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_SUBSCRIPTION"] = 14] = "LICENSING_TYPE_SUBSCRIPTION"; /** * A license that grants access to the software or service by a specified number of users. * * @generated from enum value: LICENSING_TYPE_USER = 15; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_USER"] = 15] = "LICENSING_TYPE_USER"; /** * Another license type. * * @generated from enum value: LICENSING_TYPE_OTHER = 16; */ LicensingTypeEnum[LicensingTypeEnum["LICENSING_TYPE_OTHER"] = 16] = "LICENSING_TYPE_OTHER"; })(LicensingTypeEnum || (LicensingTypeEnum = {})); // Retrieve enum metadata with: proto3.getEnumType(LicensingTypeEnum) proto3.util.setEnumType(LicensingTypeEnum, "cyclonedx.v1_6.LicensingTypeEnum", [ { no: 0, name: "LICENSING_TYPE_NULL" }, { no: 1, name: "LICENSING_TYPE_ACADEMIC" }, { no: 2, name: "LICENSING_TYPE_APPLIANCE" }, { no: 3, name: "LICENSING_TYPE_CLIENT_ACCESS" }, { no: 4, name: "LICENSING_TYPE_CONCURRENT_USER" }, { no: 5, name: "LICENSING_TYPE_CORE_POINTS" }, { no: 6, name: "LICENSING_TYPE_CUSTOM_METRIC" }, { no: 7, name: "LICENSING_TYPE_DEVICE" }, { no: 8, name: "LICENSING_TYPE_EVALUATION" }, { no: 9, name: "LICENSING_TYPE_NAMED_USER" }, { no: 10, name: "LICENSING_TYPE_NODE_LOCKED" }, { no: 11, name: "LICENSING_TYPE_OEM" }, { no: 12, name: "LICENSING_TYPE_PERPETUAL" }, { no: 13, name: "LICENSING_TYPE_PROCESSOR_POINTS" }, { no: 14, name: "LICENSING_TYPE_SUBSCRIPTION" }, { no: 15, name: "LICENSING_TYPE_USER" }, { no: 16, name: "LICENSING_TYPE_OTHER" }, ]); /** * @generated from enum cyclonedx.v1_6.LifecyclePhase */ export var LifecyclePhase; (function (LifecyclePhase) { /** * BOM produced early in the development lifecycle containing an inventory of components and services that are proposed or planned to be used. The inventory may need to be procured, retrieved, or resourced prior to use. * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- value `0` is a fallback(meaning "unspecified") in protobuf3. this usage here is an error; it shall be fixed with v2.0 of this very schema * * @generated from enum value: LIFECYCLE_PHASE_DESIGN = 0; */ LifecyclePhase[LifecyclePhase["DESIGN"] = 0] = "DESIGN"; /** * BOM consists of information obtained prior to a build process and may contain source files, development artifacts, and manifests. The inventory may need to be resolved and retrieved prior to use. * * @generated from enum value: LIFECYCLE_PHASE_PRE_BUILD = 1; */ LifecyclePhase[LifecyclePhase["PRE_BUILD"] = 1] = "PRE_BUILD"; /** * BOM consisting of information obtained during a build process where component inventory is available for use. The precise versions of resolved components are usually available at this time as well as the provenance of where the components were retrieved from. * * @generated from enum value: LIFECYCLE_PHASE_BUILD = 2; */ LifecyclePhase[LifecyclePhase["BUILD"] = 2] = "BUILD"; /** * BOM consisting of information obtained after a build process has completed and the resulting components(s) are available for further analysis. Built components may exist as the result of a CI/CD process, may have been installed or deployed to a system or device, and may need to be retrieved or extracted from the system or device. * * @generated from enum value: LIFECYCLE_PHASE_POST_BUILD = 3; */ LifecyclePhase[LifecyclePhase["POST_BUILD"] = 3] = "POST_BUILD"; /** * BOM produced that represents inventory that is running and operational. This may include staging or production environments and will generally encompass multiple SBOMs describing the applications and operating system, along with HBOMs describing the hardware that makes up the system. Operations Bill of Materials (OBOM) can provide full-stack inventory of runtime environments, configurations, and additional dependencies. * * @generated from enum value: LIFECYCLE_PHASE_OPERATIONS = 4; */ LifecyclePhase[LifecyclePhase["OPERATIONS"] = 4] = "OPERATIONS"; /** * BOM consisting of information observed through network discovery providing point-in-time enumeration of embedded, on-premise, and cloud-native services such as server applications, connected devices, microservices, and serverless functions. * * @generated from enum value: LIFECYCLE_PHASE_DISCOVERY = 5; */ LifecyclePhase[LifecyclePhase["DISCOVERY"] = 5] = "DISCOVERY"; /** * BOM containing inventory that will be, or has been retired from operations. * * @generated from enum value: LIFECYCLE_PHASE_DECOMMISSION = 6; */ LifecyclePhase[LifecyclePhase["DECOMMISSION"] = 6] = "DECOMMISSION"; })(LifecyclePhase || (LifecyclePhase = {})); // Retrieve enum metadata with: proto3.getEnumType(LifecyclePhase) proto3.util.setEnumType(LifecyclePhase, "cyclonedx.v1_6.LifecyclePhase", [ { no: 0, name: "LIFECYCLE_PHASE_DESIGN" }, { no: 1, name: "LIFECYCLE_PHASE_PRE_BUILD" }, { no: 2, name: "LIFECYCLE_PHASE_BUILD" }, { no: 3, name: "LIFECYCLE_PHASE_POST_BUILD" }, { no: 4, name: "LIFECYCLE_PHASE_OPERATIONS" }, { no: 5, name: "LIFECYCLE_PHASE_DISCOVERY" }, { no: 6, name: "LIFECYCLE_PHASE_DECOMMISSION" }, ]); /** * @generated from enum cyclonedx.v1_6.PatchClassification */ export var PatchClassification; (function (PatchClassification) { /** * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- `null` is our fallback, doubling `unspecified` * * @generated from enum value: PATCH_CLASSIFICATION_NULL = 0; */ PatchClassification[PatchClassification["NULL"] = 0] = "NULL"; /** * A patch which is not developed by the creators or maintainers of the software being patched. Refer to https://en.wikipedia.org/wiki/Unofficial_patch * * @generated from enum value: PATCH_CLASSIFICATION_UNOFFICIAL = 1; */ PatchClassification[PatchClassification["UNOFFICIAL"] = 1] = "UNOFFICIAL"; /** * A patch which dynamically modifies runtime behavior. Refer to https://en.wikipedia.org/wiki/Monkey_patch * * @generated from enum value: PATCH_CLASSIFICATION_MONKEY = 2; */ PatchClassification[PatchClassification["MONKEY"] = 2] = "MONKEY"; /** * A patch which takes code from a newer version of software and applies it to older versions of the same software. Refer to https://en.wikipedia.org/wiki/Backporting * * @generated from enum value: PATCH_CLASSIFICATION_BACKPORT = 3; */ PatchClassification[PatchClassification["BACKPORT"] = 3] = "BACKPORT"; /** * A patch created by selectively applying commits from other versions or branches of the same software. * * @generated from enum value: PATCH_CLASSIFICATION_CHERRY_PICK = 4; */ PatchClassification[PatchClassification["CHERRY_PICK"] = 4] = "CHERRY_PICK"; })(PatchClassification || (PatchClassification = {})); // Retrieve enum metadata with: proto3.getEnumType(PatchClassification) proto3.util.setEnumType(PatchClassification, "cyclonedx.v1_6.PatchClassification", [ { no: 0, name: "PATCH_CLASSIFICATION_NULL" }, { no: 1, name: "PATCH_CLASSIFICATION_UNOFFICIAL" }, { no: 2, name: "PATCH_CLASSIFICATION_MONKEY" }, { no: 3, name: "PATCH_CLASSIFICATION_BACKPORT" }, { no: 4, name: "PATCH_CLASSIFICATION_CHERRY_PICK" }, ]); /** * @generated from enum cyclonedx.v1_6.Scope */ export var Scope; (function (Scope) { /** * Default * * @generated from enum value: SCOPE_UNSPECIFIED = 0; */ Scope[Scope["UNSPECIFIED"] = 0] = "UNSPECIFIED"; /** * The component is required for runtime * * @generated from enum value: SCOPE_REQUIRED = 1; */ Scope[Scope["REQUIRED"] = 1] = "REQUIRED"; /** * The component is optional at runtime. Optional components are components that are not capable of being called due to them not being installed or otherwise accessible by any means. Components that are installed but, due to configuration or other restrictions, are prohibited from being called must be scoped as 'required'. * * @generated from enum value: SCOPE_OPTIONAL = 2; */ Scope[Scope["OPTIONAL"] = 2] = "OPTIONAL"; /** * Components that are excluded provide the ability to document component usage for test and other non-runtime purposes. Excluded components are not reachable within a call graph at runtime. * * @generated from enum value: SCOPE_EXCLUDED = 3; */ Scope[Scope["EXCLUDED"] = 3] = "EXCLUDED"; })(Scope || (Scope = {})); // Retrieve enum metadata with: proto3.getEnumType(Scope) proto3.util.setEnumType(Scope, "cyclonedx.v1_6.Scope", [ { no: 0, name: "SCOPE_UNSPECIFIED" }, { no: 1, name: "SCOPE_REQUIRED" }, { no: 2, name: "SCOPE_OPTIONAL" }, { no: 3, name: "SCOPE_EXCLUDED" }, ]); /** * @generated from enum cyclonedx.v1_6.Aggregate */ export var Aggregate; (function (Aggregate) { /** * The relationship completeness is not specified. * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- `not specified` is our fallback, doubling `unspecified` * * @generated from enum value: AGGREGATE_NOT_SPECIFIED = 0; */ Aggregate[Aggregate["NOT_SPECIFIED"] = 0] = "NOT_SPECIFIED"; /** * The relationship is complete. No further relationships including constituent components, services, or dependencies are known to exist. * * @generated from enum value: AGGREGATE_COMPLETE = 1; */ Aggregate[Aggregate["COMPLETE"] = 1] = "COMPLETE"; /** * The relationship is incomplete. Additional relationships exist and may include constituent components, services, or dependencies. * * @generated from enum value: AGGREGATE_INCOMPLETE = 2; */ Aggregate[Aggregate["INCOMPLETE"] = 2] = "INCOMPLETE"; /** * The relationship is incomplete. Only relationships for first-party components, services, or their dependencies are represented. * * @generated from enum value: AGGREGATE_INCOMPLETE_FIRST_PARTY_ONLY = 3; */ Aggregate[Aggregate["INCOMPLETE_FIRST_PARTY_ONLY"] = 3] = "INCOMPLETE_FIRST_PARTY_ONLY"; /** * The relationship is incomplete. Only relationships for third-party components, services, or their dependencies are represented. * * @generated from enum value: AGGREGATE_INCOMPLETE_THIRD_PARTY_ONLY = 4; */ Aggregate[Aggregate["INCOMPLETE_THIRD_PARTY_ONLY"] = 4] = "INCOMPLETE_THIRD_PARTY_ONLY"; /** * The relationship may be complete or incomplete. This usually signifies a 'best-effort' to obtain constituent components, services, or dependencies but the completeness is inconclusive. * * @generated from enum value: AGGREGATE_UNKNOWN = 5; */ Aggregate[Aggregate["UNKNOWN"] = 5] = "UNKNOWN"; /** * The relationship is incomplete. Only relationships for first-party components, services, or their dependencies are represented, limited specifically to those that are proprietary. * * @generated from enum value: AGGREGATE_INCOMPLETE_FIRST_PARTY_PROPRIETARY_ONLY = 6; */ Aggregate[Aggregate["INCOMPLETE_FIRST_PARTY_PROPRIETARY_ONLY"] = 6] = "INCOMPLETE_FIRST_PARTY_PROPRIETARY_ONLY"; /** * The relationship is incomplete. Only relationships for first-party components, services, or their dependencies are represented, limited specifically to those that are opensource. * * @generated from enum value: AGGREGATE_INCOMPLETE_FIRST_PARTY_OPENSOURCE_ONLY = 7; */ Aggregate[Aggregate["INCOMPLETE_FIRST_PARTY_OPENSOURCE_ONLY"] = 7] = "INCOMPLETE_FIRST_PARTY_OPENSOURCE_ONLY"; /** * The relationship is incomplete. Only relationships for third-party components, services, or their dependencies are represented, limited specifically to those that are proprietary. * * @generated from enum value: AGGREGATE_INCOMPLETE_THIRD_PARTY_PROPRIETARY_ONLY = 8; */ Aggregate[Aggregate["INCOMPLETE_THIRD_PARTY_PROPRIETARY_ONLY"] = 8] = "INCOMPLETE_THIRD_PARTY_PROPRIETARY_ONLY"; /** * The relationship is incomplete. Only relationships for third-party components, services, or their dependencies are represented, limited specifically to those that are opensource. * * @generated from enum value: AGGREGATE_INCOMPLETE_THIRD_PARTY_OPENSOURCE_ONLY = 9; */ Aggregate[Aggregate["INCOMPLETE_THIRD_PARTY_OPENSOURCE_ONLY"] = 9] = "INCOMPLETE_THIRD_PARTY_OPENSOURCE_ONLY"; })(Aggregate || (Aggregate = {})); // Retrieve enum metadata with: proto3.getEnumType(Aggregate) proto3.util.setEnumType(Aggregate, "cyclonedx.v1_6.Aggregate", [ { no: 0, name: "AGGREGATE_NOT_SPECIFIED" }, { no: 1, name: "AGGREGATE_COMPLETE" }, { no: 2, name: "AGGREGATE_INCOMPLETE" }, { no: 3, name: "AGGREGATE_INCOMPLETE_FIRST_PARTY_ONLY" }, { no: 4, name: "AGGREGATE_INCOMPLETE_THIRD_PARTY_ONLY" }, { no: 5, name: "AGGREGATE_UNKNOWN" }, { no: 6, name: "AGGREGATE_INCOMPLETE_FIRST_PARTY_PROPRIETARY_ONLY" }, { no: 7, name: "AGGREGATE_INCOMPLETE_FIRST_PARTY_OPENSOURCE_ONLY" }, { no: 8, name: "AGGREGATE_INCOMPLETE_THIRD_PARTY_PROPRIETARY_ONLY" }, { no: 9, name: "AGGREGATE_INCOMPLETE_THIRD_PARTY_OPENSOURCE_ONLY" }, ]); /** * buf:lint:ignore ENUM_VALUE_PREFIX -- Enum value names should be prefixed with "EVIDENCE_FIELD_TYPE_" * * @generated from enum cyclonedx.v1_6.EvidenceFieldType */ export var EvidenceFieldType; (function (EvidenceFieldType) { /** * buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- `null` is our fallback, doubling `unspecified` * * @generated from enum value: EVIDENCE_FIELD_NULL = 0; */ EvidenceFieldType[EvidenceFieldType["EVIDENCE_FIELD_NULL"] = 0] = "EVIDENCE_FIELD_NULL"; /** * @generated from enum value: EVIDENCE_FIELD_GROUP = 1; */ EvidenceFieldType[EvidenceFieldType["EVIDENCE_FIELD_GROUP"] = 1] = "EVIDENCE_FIELD_GROUP"; /** * @generated from enum value: EVIDENCE_FIELD_NAME = 2; */ EvidenceFieldType[EvidenceFieldType["EVIDENCE_FIELD_NAME"] = 2] = "EVIDENCE_FIELD_NAME"; /** * @generated from enum value: EVIDENCE_FIELD_VERSION = 3; */ EvidenceFieldType[EvidenceFieldType["EVIDENCE_FIELD_VERSION"] = 3] = "EVIDENCE_FIELD_VERSION"; /** * @generated from enum value: EVIDENCE_FIELD_PURL = 4; */ EvidenceFieldType[EvidenceFieldType["EVIDENCE_FIELD_PURL"] = 4] = "EVIDENCE_FIELD_PURL"; /** * @generated from enum value: EVIDENCE_FIELD_CPE = 5; */ EvidenceFieldType[EvidenceFieldType["EVIDENCE_FIELD_CPE"] = 5] = "EVIDENCE_FIELD_CPE"; /** * @generated from enum value: EVIDENCE_FIELD_SWID = 6; */ EvidenceFieldType[EvidenceFieldType