SetAppReservedThroughputInput
Set or change an app's reserved REALTIME (UDP) capacity on the shared environment. Reservations are sold in two independent dimensions and this mutation sets one of them; read both back from App.reservedUdpBytesPerSec and App.reservedGraphqlOpsPerSec.
input SetAppReservedThroughputInput {
orgId: BigInt!
appId: BigInt!
reservedBytesPerSec: BigInt!
}
Fields
SetAppReservedThroughputInput.orgId ● BigInt! non-null scalar
Organization that owns the app.
SetAppReservedThroughputInput.appId ● BigInt! non-null scalar
App to configure reserved realtime (UDP) capacity for.
SetAppReservedThroughputInput.reservedBytesPerSec ● BigInt! non-null scalar
Reserved sustained realtime capacity in bytes/s (decimal MB/s: 1_000_000 = 1 MB/s). 0 clears the reservation, which releases the provisioned floor and stops the monthly fee; it does not change how the app is shaped, because the ~1 MB/s free-tier cap is decided by whether the org can be charged rather than by whether it holds a reservation. A reservation buys capacity, not volume: the fee is charged in addition to metered usage and includes no data allowance.
Member Of
setAppReservedThroughput mutation