-
Notifications
You must be signed in to change notification settings - Fork 525
/
Copy pathConfigurationSchema.json
62 lines (62 loc) · 1.92 KB
/
ConfigurationSchema.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
{
"definitions": {
"logLevel": {
"properties": {
"Npgsql": {
"$ref": "#/definitions/logLevelThreshold"
},
"Npgsql.Command": {
"$ref": "#/definitions/logLevelThreshold"
},
"Npgsql.Connection": {
"$ref": "#/definitions/logLevelThreshold"
},
"Npgsql.Copy": {
"$ref": "#/definitions/logLevelThreshold"
},
"Npgsql.Exception": {
"$ref": "#/definitions/logLevelThreshold"
},
"Npgsql.Replication": {
"$ref": "#/definitions/logLevelThreshold"
},
"Npgsql.Transaction": {
"$ref": "#/definitions/logLevelThreshold"
}
}
}
},
"type": "object",
"properties": {
"Aspire": {
"type": "object",
"properties": {
"Npgsql": {
"type": "object",
"properties": {
"ConnectionString": {
"type": "string",
"description": "The connection string of the PostgreSQL database to connect to."
},
"DisableHealthChecks": {
"type": "boolean",
"description": "Gets or sets a boolean value that indicates whether the database health check is disabled or not.",
"default": false
},
"DisableMetrics": {
"type": "boolean",
"description": "Gets or sets a boolean value that indicates whether the OpenTelemetry metrics are disabled or not.",
"default": false
},
"DisableTracing": {
"type": "boolean",
"description": "Gets or sets a boolean value that indicates whether the OpenTelemetry tracing is disabled or not.",
"default": false
}
},
"description": "Provides the client configuration settings for connecting to a PostgreSQL database using Npgsql."
}
}
}
}
}