@openshift-assisted/types 2.36.4 → 2.37.0

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.
@@ -83,6 +83,7 @@ export interface Boot {
83
83
  currentBootMode?: string;
84
84
  pxeInterface?: string;
85
85
  commandLine?: string;
86
+ secureBootState?: SecureBootState;
86
87
  }
87
88
  export interface Cluster {
88
89
  /**
@@ -367,6 +368,10 @@ export interface Cluster {
367
368
  * Indication if organization soft timeouts is enabled for the cluster.
368
369
  */
369
370
  orgSoftTimeoutsEnabled?: boolean;
371
+ /**
372
+ * Specifies the required number of control plane nodes that should be part of the cluster.
373
+ */
374
+ controlPlaneCount?: number;
370
375
  }
371
376
  export interface ClusterCreateParams {
372
377
  /**
@@ -374,7 +379,7 @@ export interface ClusterCreateParams {
374
379
  */
375
380
  name: string;
376
381
  /**
377
- * Guaranteed availability of the installed cluster. 'Full' installs a Highly-Available cluster
382
+ * (DEPRECATED) Please use 'controlPlaneCount' instead. Guaranteed availability of the installed cluster. 'Full' installs a Highly-Available cluster
378
383
  * over multiple master nodes whereas 'None' installs a full cluster over one node.
379
384
  *
380
385
  */
@@ -492,6 +497,10 @@ export interface ClusterCreateParams {
492
497
  * A comma-separated list of tags that are associated to the cluster.
493
498
  */
494
499
  tags?: string;
500
+ /**
501
+ * Specifies the required number of control plane nodes that should be part of the cluster.
502
+ */
503
+ controlPlaneCount?: number;
495
504
  }
496
505
  export interface ClusterDefaultConfig {
497
506
  clusterNetworkCidr?: string; // ^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)[\/]([1-9]|[1-2][0-9]|3[0-2]?)$
@@ -611,8 +620,16 @@ export type ClusterValidationId =
611
620
  | 'lvm-requirements-satisfied'
612
621
  | 'mce-requirements-satisfied'
613
622
  | 'mtv-requirements-satisfied'
623
+ | 'osc-requirements-satisfied'
614
624
  | 'network-type-valid'
615
- | 'platform-requirements-satisfied';
625
+ | 'platform-requirements-satisfied'
626
+ | 'node-feature-discovery-requirements-satisfied'
627
+ | 'nvidia-gpu-requirements-satisfied'
628
+ | 'pipelines-requirements-satisfied'
629
+ | 'servicemesh-requirements-satisfied'
630
+ | 'serverless-requirements-satisfied'
631
+ | 'openshift-ai-requirements-satisfied'
632
+ | 'authorino-requirements-satisfied';
616
633
  export interface CompletionParams {
617
634
  isSuccess: boolean;
618
635
  errorInfo?: string;
@@ -637,6 +654,7 @@ export interface ConnectivityRemoteHost {
637
654
  hostId?: string; // uuid
638
655
  l2Connectivity?: L2Connectivity[];
639
656
  l3Connectivity?: L3Connectivity[];
657
+ mtuReport?: MtuReport[];
640
658
  }
641
659
  export interface ConnectivityReport {
642
660
  remoteHosts?: ConnectivityRemoteHost[];
@@ -978,6 +996,7 @@ export type FeatureSupportLevelId =
978
996
  | 'CNV'
979
997
  | 'MCE'
980
998
  | 'MTV'
999
+ | 'OSC'
981
1000
  | 'NUTANIX_INTEGRATION'
982
1001
  | 'BAREMETAL_PLATFORM'
983
1002
  | 'NONE_PLATFORM'
@@ -993,7 +1012,15 @@ export type FeatureSupportLevelId =
993
1012
  | 'SKIP_MCO_REBOOT'
994
1013
  | 'EXTERNAL_PLATFORM'
995
1014
  | 'OVN_NETWORK_TYPE'
996
- | 'SDN_NETWORK_TYPE';
1015
+ | 'SDN_NETWORK_TYPE'
1016
+ | 'NODE_FEATURE_DISCOVERY'
1017
+ | 'NVIDIA_GPU'
1018
+ | 'PIPELINES'
1019
+ | 'SERVICEMESH'
1020
+ | 'SERVERLESS'
1021
+ | 'OPENSHIFT_AI'
1022
+ | 'NON_STANDARD_HA_CONTROL_PLANE'
1023
+ | 'AUTHORINO';
997
1024
  /**
998
1025
  * Cluster finalizing stage managed by controller
999
1026
  */
@@ -1519,6 +1546,7 @@ export type HostValidationId =
1519
1546
  | 'lvm-requirements-satisfied'
1520
1547
  | 'mce-requirements-satisfied'
1521
1548
  | 'mtv-requirements-satisfied'
1549
+ | 'osc-requirements-satisfied'
1522
1550
  | 'sufficient-installation-disk-speed'
1523
1551
  | 'cnv-requirements-satisfied'
1524
1552
  | 'sufficient-network-latency-requirement-for-role'
@@ -1536,7 +1564,16 @@ export type HostValidationId =
1536
1564
  | 'compatible-agent'
1537
1565
  | 'no-skip-installation-disk'
1538
1566
  | 'no-skip-missing-disk'
1539
- | 'no-ip-collisions-in-network';
1567
+ | 'no-ip-collisions-in-network'
1568
+ | 'no-iscsi-nic-belongs-to-machine-cidr'
1569
+ | 'node-feature-discovery-requirements-satisfied'
1570
+ | 'nvidia-gpu-requirements-satisfied'
1571
+ | 'pipelines-requirements-satisfied'
1572
+ | 'servicemesh-requirements-satisfied'
1573
+ | 'serverless-requirements-satisfied'
1574
+ | 'openshift-ai-requirements-satisfied'
1575
+ | 'authorino-requirements-satisfied'
1576
+ | 'mtu-valid';
1540
1577
  /**
1541
1578
  * Explicit ignition endpoint overrides the default ignition endpoint.
1542
1579
  */
@@ -2112,6 +2149,11 @@ export interface MonitoredOperator {
2112
2149
  statusUpdatedAt?: string; // date-time
2113
2150
  }
2114
2151
  export type MonitoredOperatorsList = MonitoredOperator[];
2152
+ export interface MtuReport {
2153
+ outgoingNic?: string;
2154
+ remoteIpAddress?: string;
2155
+ mtuSuccessful?: boolean;
2156
+ }
2115
2157
  export interface NextStepCmdRequest {
2116
2158
  /**
2117
2159
  * Infra env id
@@ -2412,6 +2454,7 @@ export interface Route {
2412
2454
  */
2413
2455
  metric?: number; // int32
2414
2456
  }
2457
+ export type SecureBootState = 'Unknown' | 'NotSupported' | 'Enabled' | 'Disabled';
2415
2458
  /**
2416
2459
  * IP address block for service IP blocks.
2417
2460
  */
@@ -2701,6 +2744,10 @@ export interface V2ClusterUpdateParams {
2701
2744
  * A comma-separated list of tags that are associated to the cluster.
2702
2745
  */
2703
2746
  tags?: string;
2747
+ /**
2748
+ * Specifies the required number of control plane nodes that should be part of the cluster.
2749
+ */
2750
+ controlPlaneCount?: number;
2704
2751
  }
2705
2752
  export interface V2Events {
2706
2753
  clusterId?: string;
package/package.json CHANGED
@@ -47,5 +47,5 @@
47
47
  "js-yaml": "^4.1.0",
48
48
  "sw2dts": "^2.6.3"
49
49
  },
50
- "version": "2.36.4"
50
+ "version": "2.37.0"
51
51
  }