-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathAuthCacheCtrlr.json
105 lines (105 loc) · 3.01 KB
/
AuthCacheCtrlr.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Schema for AuthCacheCtrlr",
"name": "AuthCacheCtrlr",
"type": "object",
"properties": {
"AuthCacheCtrlrAvailable": {
"variable_name": "Available",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": true
}
],
"description": "Authorization caching is available, but not necessarily enabled.",
"default": true,
"type": "boolean"
},
"AuthCacheCtrlrEnabled": {
"variable_name": "Enabled",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": true
}
],
"description": "If set to true, Authorization caching is enabled.",
"default": true,
"type": "boolean"
},
"AuthCacheLifeTime": {
"variable_name": "LifeTime",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "Indicates how long it takes until a token expires in the authorization cache since it is last used",
"type": "integer"
},
"AuthCachePolicy": {
"variable_name": "Policy",
"characteristics": {
"valuesList": "LRU,LFU,FIFO,CUSTOM",
"supportsMonitoring": true,
"dataType": "OptionList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "Cache Entry Replacement Policy: least recently used, least frequently used, first in first out, other custom mechanism.",
"type": "string"
},
"AuthCacheStorage": {
"variable_name": "Storage",
"characteristics": {
"unit": "B",
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Indicates the number of bytes currently used by the Authorization Cache. MaxLimit indicates the maximum number of bytes that can be used by the Authorization Cache.",
"type": "integer"
},
"AuthCacheDisablePostAuthorize": {
"variable_name": "DisablePostAuthorize",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "When set to true this variable disables the behavior to request authorization for an idToken that is stored in the cache with a status other than Accepted, as stated in C10.FR.03 and C12.FR.05.",
"type": "boolean"
}
},
"required": []
}