Component Library

Fern | Indicate the Availability of an endpoint

The Availability component is used to indicate the availability status of an endpoint.

Availability Prop:

type: ‘beta’ | ‘GA’ | ‘deprecated’

Beta availability

Indicates that an endpoint is in

Beta
. This means that the endpoint is still in development and may change before it is released to the public.

1<Availability type="beta" />

General availability

Indicates that an endpoint is

GA
. This means that the endpoint is ready for use in production.

1<Availability type="GA" />

Deprecated availability

Indicates that an endpoint is

Deprecated
. This means that the endpoint is no longer supported and will be removed in a future release.

1<Availability type="deprecated" />
Was this page helpful?