Table of Contents

Enum ServiceSelector

Namespace
Dev.Sigstore.Trustroot.V1
Assembly
Sigstore.dll

ServiceSelector specifies how a client SHOULD select a set of Services to connect to. A client SHOULD throw an error if the value is SERVICE_SELECTOR_UNDEFINED.

public enum ServiceSelector

Fields

[OriginalName("ALL")] All = 1

Clients SHOULD select all Services based on supported API version and validity window.

[OriginalName("ANY")] Any = 2

Clients SHOULD select one Service based on supported API version and validity window. It is up to the client implementation to decide how to select the Service, e.g. random or round-robin.

[OriginalName("EXACT")] Exact = 3

Clients SHOULD select a specific number of Services based on supported API version and validity window, using the provided count. It is up to the client implementation to decide how to select the Service, e.g. random or round-robin.

[OriginalName("SERVICE_SELECTOR_UNDEFINED")] Undefined = 0