cdx-proto
    Preparing search index...

    Type Alias InputType

    InputType: Message<"cyclonedx.v1_6.InputType"> & {
        data?: AttachedText;
        environmentVars: EnvironmentVars[];
        parameters: Parameter[];
        properties: Property[];
        resource?: ResourceReferenceChoice;
        source?: ResourceReferenceChoice;
        target?: ResourceReferenceChoice;
    }

    Type that represents various input data types and formats.

    Type declaration

    • Optionaldata?: AttachedText

      Inputs that have the form of data.

      from field: optional cyclonedx.v1_6.AttachedText data = 6;

    • environmentVars: EnvironmentVars[]

      Inputs that have the form of parameters with names and values.

      from field: repeated cyclonedx.v1_6.EnvironmentVars environmentVars = 5;

    • parameters: Parameter[]

      Inputs that have the form of parameters with names and values.

      from field: repeated cyclonedx.v1_6.Parameter parameters = 4;

    • properties: Property[]

      Additional properties of the input data.

      from field: repeated cyclonedx.v1_6.Property properties = 7;

    • Optionalresource?: ResourceReferenceChoice

      A reference to an independent resource provided as an input to a task by the workflow runtime.

      from field: optional cyclonedx.v1_6.ResourceReferenceChoice resource = 3;

    • Optionalsource?: ResourceReferenceChoice

      A references to the component or service that provided the input to the task (e.g., reference to a service with a data flow value of inbound)

      from field: optional cyclonedx.v1_6.ResourceReferenceChoice source = 1;

    • Optionaltarget?: ResourceReferenceChoice

      A reference to the component or service that received or stored the input if not the task itself (e.g., a local, named storage workspace)

      from field: optional cyclonedx.v1_6.ResourceReferenceChoice target = 2;

    from message cyclonedx.v1_6.InputType