annotations property

Map<String, String>? annotations
getter/setter pair

Allows clients to store small amounts of arbitrary data.

Annotations must follow the Kubernetes syntax. The total size of all keys and values combined is limited to 256k. Key can have 2 segments: prefix (optional) and name (required), separated by a slash (/). Prefix must be a DNS subdomain. Name must be 63 characters or less, begin and end with alphanumerics, with dashes (-), underscores (_), dots (.), and alphanumerics between.

Implementation

core.Map<core.String, core.String>? annotations;