RawAppGroup
应用规则组
继承
属性
rules
IArray<string|RawAppRule>
应用规则组的规则列表, 支持多种类型, 下面介绍它的两种简单类型的表示意义
示例-1: 简单的字符串直接表示规则的 matches
json5
{
rules: 'A > B'
}等价于
json5
{
rules: {
matches: 'A > B',
}
}示例-2: 也可以是字符串数组表示多个规则的 matches
json5
{
rules: ['A > B', 'A > B']
}等价于
json5
{
rules: [
{
matches: 'A > B',
},
{
matches: 'A > B',
},
],
}ignoreGlobalGroupMatch?
可选boolean
避免影响到某个全局规则组, 见 RawGlobalGroup.disableIfAppGroupMatch
继承属性
- RawCommonProps:
actionCd?,actionDelay?,fastQuery?,matchRoot?,matchDelay?,matchTime?,actionMaximum?,resetMatch?,actionCdKey?,actionMaximumKey?,order?,forcedTime?,priorityTime?,priorityActionMaximum?,snapshotUrls?,excludeSnapshotUrls?,exampleUrls? - RawGroupProps:
key,name,desc?,enable?,scopeKeys? - RawAppRuleProps:
activityIds?,excludeActivityIds?,,versionNames?,excludeVersionNames?,versionCodes?,excludeVersionCodes?versionCode?,versionName?