@openshift-assisted/types 2.55.2 → 2.56.1

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.
@@ -1896,6 +1896,10 @@ export interface InfraEnv {
1896
1896
  * A comma-separated list of NTP sources (name or IP) going to be added to all the hosts.
1897
1897
  */
1898
1898
  additionalNtpSources?: string;
1899
+ /**
1900
+ * A comma-separated list of NTP sources (name or IP) to be used as the only NTP configuration for hosts in this infra-env.
1901
+ */
1902
+ ntpSources?: string;
1899
1903
  /**
1900
1904
  * SSH public key for debugging the installation.
1901
1905
  */
@@ -1961,6 +1965,10 @@ export interface InfraEnvCreateParams {
1961
1965
  * A comma-separated list of NTP sources (name or IP) going to be added to all the hosts.
1962
1966
  */
1963
1967
  additionalNtpSources?: string;
1968
+ /**
1969
+ * A comma-separated list of NTP sources (name or IP) to be used as the only NTP configuration for hosts in this infra-env.
1970
+ */
1971
+ ntpSources?: string;
1964
1972
  /**
1965
1973
  * SSH public key for debugging the installation.
1966
1974
  */
@@ -2009,6 +2017,10 @@ export interface InfraEnvUpdateParams {
2009
2017
  * A comma-separated list of NTP sources (name or IP) going to be added to all the hosts.
2010
2018
  */
2011
2019
  additionalNtpSources?: string;
2020
+ /**
2021
+ * A comma-separated list of NTP sources (name or IP) to be used as the only NTP configuration for hosts in this infra-env.
2022
+ */
2023
+ ntpSources?: string;
2012
2024
  /**
2013
2025
  * SSH public key for debugging the installation.
2014
2026
  */
package/package.json CHANGED
@@ -44,8 +44,8 @@
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/js-yaml": "^4.0.9",
47
- "js-yaml": "^4.2.0",
47
+ "js-yaml": "^4.3.1",
48
48
  "sw2dts": "^2.6.3"
49
49
  },
50
- "version": "2.55.2"
50
+ "version": "2.56.1"
51
51
  }