priority property
The request priority this request should be processed at.
For internal users: Possible string values are:
- "UNSPCIFIED" : Unspecified
- "SHEDDABLE" : Frequent partial and occasional full unavailability is expected and not pageable. * Requests to this band will be shed before all other requests. * This is the default for async calls sent from batch jobs.
- "SHEDDABLE_PLUS" : Partial unavailability is expected and is not necessarily pageable. * Requests to this band will be shed before any critical traffic. * This is the default for async calls sent from production jobs.
- "CRITICAL" : Any outage is a pageable event. * During a production outage requests in this band will only be shed before CRITICAL_PLUS. * This is the default for sync calls sent from production jobs.
- "CRITICAL_PLUS" : Any outage is a pageable event. * The guideline is for < 10% of requests to a service to be in this band. * During a production outage requests in this band will be prioritized above all others. * Opt-in to CRITICAL_PLUS when your workflow triggers by human.
Implementation
core.String? priority;