@controlplane/schema 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/src/interfaces/command.d.ts +1 -1
- package/build/src/interfaces/discovery.d.ts +1 -0
- package/build/src/interfaces/env.d.ts +0 -1
- package/build/src/interfaces/identity.d.ts +4 -0
- package/build/src/interfaces/org.d.ts +5 -1
- package/build/src/interfaces/orgLogging.d.ts +3 -0
- package/build/src/interfaces/valkey.d.ts +0 -0
- package/build/src/interfaces/valkey.js +2 -0
- package/package.json +1 -1
|
@@ -88,7 +88,7 @@ export interface ExpandVolumeSpec {
|
|
|
88
88
|
export interface ExpandVolumeStatus {
|
|
89
89
|
clusterId?: string;
|
|
90
90
|
messages?: string[];
|
|
91
|
-
stage: 'expand-volume' | 'await-replica-termination' | 'update-volume-set' | 'cleanup-k8s' | 'revert';
|
|
91
|
+
stage: 'expand-volume' | 'await-replica-termination' | 'await-expansion-completed' | 'update-volume-set' | 'recreate-replica' | 'cleanup-k8s' | 'revert';
|
|
92
92
|
replicaRestartedAt?: Date;
|
|
93
93
|
}
|
|
94
94
|
export interface DeleteVolumeSpec {
|
|
@@ -49,7 +49,11 @@ export interface OrgSpec {
|
|
|
49
49
|
tracing?: Tracing;
|
|
50
50
|
sessionTimeoutSeconds?: number;
|
|
51
51
|
authConfig?: AuthConfig;
|
|
52
|
-
observability?:
|
|
52
|
+
observability?: {
|
|
53
|
+
logsRetentionDays?: number;
|
|
54
|
+
metricsRetentionDays?: number;
|
|
55
|
+
tracesRetentionDays?: number;
|
|
56
|
+
};
|
|
53
57
|
security?: {
|
|
54
58
|
threatDetection?: ThreatDetection;
|
|
55
59
|
};
|
|
@@ -29,6 +29,9 @@ export interface CloudWatchLogging {
|
|
|
29
29
|
retentionDays?: number;
|
|
30
30
|
groupName: string;
|
|
31
31
|
streamName: string;
|
|
32
|
+
extractFields?: {
|
|
33
|
+
[x: string]: string;
|
|
34
|
+
};
|
|
32
35
|
}
|
|
33
36
|
export interface CoralogixLogging {
|
|
34
37
|
cluster: 'coralogix.com' | 'coralogix.us' | 'app.coralogix.in' | 'app.eu2.coralogix.com' | 'app.coralogixsg.com';
|
|
File without changes
|