@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.
@@ -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 {
@@ -9,6 +9,7 @@ export interface Discovery {
9
9
  logs?: string;
10
10
  metrics?: string;
11
11
  tracing?: string;
12
+ byok?: string;
12
13
  metering?: string;
13
14
  "billing-ng"?: string;
14
15
  grafana?: string;
@@ -2,6 +2,5 @@ export type EnvName = string;
2
2
  export interface EnvVar {
3
3
  name: string;
4
4
  value?: string;
5
- fieldRef?: 'metadata.name' | 'metadata.namespace' | 'spec.nodeName' | 'status.hostIP' | 'status.podIP' | 'status.podIPs';
6
5
  }
7
6
  export type EnvCollection = EnvVar[];
@@ -51,6 +51,10 @@ export interface AzureIdentity {
51
51
  }
52
52
  export interface Status {
53
53
  objectName?: string;
54
+ aws?: {
55
+ lastError?: string;
56
+ usable?: boolean;
57
+ };
54
58
  }
55
59
  export interface NetworkResource {
56
60
  name: Name | string;
@@ -49,7 +49,11 @@ export interface OrgSpec {
49
49
  tracing?: Tracing;
50
50
  sessionTimeoutSeconds?: number;
51
51
  authConfig?: AuthConfig;
52
- observability?: ObservabilityConfig;
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
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ /* auto-generated */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@controlplane/schema",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Control Plane Corporation Schema",
5
5
  "scripts": {
6
6
  "build": "tsc",