indexes property
Restricts this API key to a list of indices or index patterns. If the list is empty, all indices are allowed. Specify either an exact index name or a pattern with a leading or trailing wildcard character (or both). For example: - dev_*
matches all indices starting with "dev_" - *_dev
matches all indices ending with "_dev" - *_products_*
matches all indices containing "products".
Implementation
@JsonKey(name: r'indexes')
final List<String>? indexes;