cdx-proto
    Preparing search index...

    Type Alias CryptoProperties_CertificateState

    CryptoProperties_CertificateState: Message<
        "cyclonedx.v1_7.CryptoProperties.CertificateState",
    > & {
        description?: string;
        reason?: string;
        state: | {
            case: "predefinedState";
            value: CryptoProperties_CertificateState_PredefinedState;
        }
        | { case: "name"; value: string }
        | { case: undefined; value?: undefined };
    }

    Certificate State

    Type Declaration

    • Optionaldescription?: string

      The description of the certificate lifecycle state (only used with custom states).

      from field: optional string description = 4;

    • Optionalreason?: string

      A reason for the certificate being in this state.

      from field: optional string reason = 1;

    • state:
          | {
              case: "predefinedState";
              value: CryptoProperties_CertificateState_PredefinedState;
          }
          | { case: "name"; value: string }
          | { case: undefined; value?: undefined }

      The state can be either a predefined state or a custom state

      from oneof cyclonedx.v1_7.CryptoProperties.CertificateState.state

    from message cyclonedx.v1_7.CryptoProperties.CertificateState