Skip to content

Manifest🔗

Definition🔗

type Manifest struct {
    ApiVersion string `json:"apiVersion"`
    Kind string `json:"kind"`
    Metadata resource.Metadata `json:"metadata"`
    Spec any `json:"spec"`
}

Methods🔗

UnmarshalJSONStrict🔗

UnmarshalJSONStrict implements a custom JSON unmarshalling logic to decode Manifest from JSON.

Note: the unmarshalling done by this function is strict. It will fail over required fields being absent from the input, fields having an incorrect type, unexpected fields being present, …

func (manifest *Manifest) UnmarshalJSONStrict(raw []byte) error

Equals🔗

Equals tests the equality of two Manifest objects.

func (manifest *Manifest) Equals(other Manifest) bool

Validate🔗

Validate checks all the validation constraints that may be defined on Manifest fields for violations and returns them.

func (manifest *Manifest) Validate() error

See also🔗