Type Alias ReloadRequest

type ReloadRequest = {
    appId: string;
    partial?: boolean;
    resourceId?: ResourceId;
    resourceType?: ResourceType;
    variables?: Record<string, string>;
    weight?: Weight;
}
Index
appId: string

The ID of the app to be reloaded.

partial?: boolean

The boolean value used to present the reload is partial or not

resourceId?: ResourceId

The String field identifying the specific resource ID within that service

resourceType?: ResourceType

The String field identifying the service type that triggered the reload, e.g. "api"

variables?: Record<string, string>

The variables to be used in the load script. Maximum of 20 variables allowed with a maximum length of 256 characters for each name/value.

weight?: Weight

The weight of the reload for the same tenant. The higher the weight, the sooner the reload will be scheduled relative to other reloads for the same tenant. The personal app will be always set as 1.