Skip to content

Commit 45e1e62

Browse files
authored
Update APIs - package version bumped to 1.3.9 (#70)
1 parent dd75ce2 commit 45e1e62

File tree

432 files changed

+1833
-45356
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

432 files changed

+1833
-45356
lines changed

console-core-models.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -909,6 +909,23 @@ export const MachineSetModel: K8sModel = {
909909
crd: true,
910910
};
911911

912+
export const ControlPlaneMachineSetModel: K8sModel = {
913+
label: 'ControlPlaneMachineSet',
914+
// t('public~ControlPlaneMachineSet')
915+
labelKey: 'public~ControlPlaneMachineSet',
916+
labelPlural: 'ControlPlaneMachineSets',
917+
// t('public~ControlPlaneMachineSets')
918+
labelPluralKey: 'public~ControlPlaneMachineSets',
919+
apiVersion: 'v1',
920+
apiGroup: 'machine.openshift.io',
921+
plural: 'controlplanemachinesets',
922+
abbr: 'CPMS',
923+
namespaced: true,
924+
kind: 'ControlPlaneMachineSet',
925+
id: 'controlplanemachineset',
926+
crd: true,
927+
};
928+
912929
export const MachineDeploymentModel: K8sModel = {
913930
label: 'MachineDeployment',
914931
// t('public~MachineDeployment')

console/core/index.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -909,6 +909,23 @@ export const MachineSetModel: K8sModel = {
909909
crd: true,
910910
};
911911

912+
export const ControlPlaneMachineSetModel: K8sModel = {
913+
label: 'ControlPlaneMachineSet',
914+
// t('public~ControlPlaneMachineSet')
915+
labelKey: 'public~ControlPlaneMachineSet',
916+
labelPlural: 'ControlPlaneMachineSets',
917+
// t('public~ControlPlaneMachineSets')
918+
labelPluralKey: 'public~ControlPlaneMachineSets',
919+
apiVersion: 'v1',
920+
apiGroup: 'machine.openshift.io',
921+
plural: 'controlplanemachinesets',
922+
abbr: 'CPMS',
923+
namespaced: true,
924+
kind: 'ControlPlaneMachineSet',
925+
id: 'controlplanemachineset',
926+
crd: true,
927+
};
928+
912929
export const MachineDeploymentModel: K8sModel = {
913930
label: 'MachineDeployment',
914931
// t('public~MachineDeployment')

containerized-data-importer/models/V1beta1DataSourceSource.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
import { exists } from '../runtime';
1616
import {
17+
V1beta1DataSourceRefSourceDataSource,
18+
V1beta1DataSourceRefSourceDataSourceFromJSON,
19+
V1beta1DataSourceRefSourceDataSourceToJSON,
1720
V1beta1DataVolumeSourcePVC,
1821
V1beta1DataVolumeSourcePVCFromJSON,
1922
V1beta1DataVolumeSourcePVCToJSON,
@@ -28,6 +31,12 @@ import {
2831
* @interface V1beta1DataSourceSource
2932
*/
3033
export interface V1beta1DataSourceSource {
34+
/**
35+
*
36+
* @type {V1beta1DataSourceRefSourceDataSource}
37+
* @memberof V1beta1DataSourceSource
38+
*/
39+
dataSource?: V1beta1DataSourceRefSourceDataSource;
3140
/**
3241
*
3342
* @type {V1beta1DataVolumeSourcePVC}
@@ -54,6 +63,9 @@ export function V1beta1DataSourceSourceFromJSONTyped(
5463
return json;
5564
}
5665
return {
66+
dataSource: !exists(json, 'dataSource')
67+
? undefined
68+
: V1beta1DataSourceRefSourceDataSourceFromJSON(json['dataSource']),
5769
pvc: !exists(json, 'pvc') ? undefined : V1beta1DataVolumeSourcePVCFromJSON(json['pvc']),
5870
snapshot: !exists(json, 'snapshot')
5971
? undefined
@@ -69,6 +81,7 @@ export function V1beta1DataSourceSourceToJSON(value?: V1beta1DataSourceSource |
6981
return null;
7082
}
7183
return {
84+
dataSource: V1beta1DataSourceRefSourceDataSourceToJSON(value.dataSource),
7285
pvc: V1beta1DataVolumeSourcePVCToJSON(value.pvc),
7386
snapshot: V1beta1DataVolumeSourceSnapshotToJSON(value.snapshot),
7487
};

containerized-data-importer/models/V1beta1DataVolumeSourceRegistry.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
*/
1414

1515
import { exists } from '../runtime';
16+
import {
17+
V1beta1PlatformOptions,
18+
V1beta1PlatformOptionsFromJSON,
19+
V1beta1PlatformOptionsToJSON,
20+
} from './';
21+
1622
/**
1723
* DataVolumeSourceRegistry provides the parameters to create a Data Volume from an registry source
1824
* @export
@@ -31,6 +37,12 @@ export interface V1beta1DataVolumeSourceRegistry {
3137
* @memberof V1beta1DataVolumeSourceRegistry
3238
*/
3339
imageStream?: string;
40+
/**
41+
*
42+
* @type {V1beta1PlatformOptions}
43+
* @memberof V1beta1DataVolumeSourceRegistry
44+
*/
45+
platform?: V1beta1PlatformOptions;
3446
/**
3547
* PullMethod can be either "pod" (default import), or "node" (node docker cache based import)
3648
* @type {string}
@@ -67,6 +79,9 @@ export function V1beta1DataVolumeSourceRegistryFromJSONTyped(
6779
return {
6880
certConfigMap: !exists(json, 'certConfigMap') ? undefined : json['certConfigMap'],
6981
imageStream: !exists(json, 'imageStream') ? undefined : json['imageStream'],
82+
platform: !exists(json, 'platform')
83+
? undefined
84+
: V1beta1PlatformOptionsFromJSON(json['platform']),
7085
pullMethod: !exists(json, 'pullMethod') ? undefined : json['pullMethod'],
7186
secretRef: !exists(json, 'secretRef') ? undefined : json['secretRef'],
7287
url: !exists(json, 'url') ? undefined : json['url'],
@@ -85,6 +100,7 @@ export function V1beta1DataVolumeSourceRegistryToJSON(
85100
return {
86101
certConfigMap: value.certConfigMap,
87102
imageStream: value.imageStream,
103+
platform: V1beta1PlatformOptionsToJSON(value.platform),
88104
pullMethod: value.pullMethod,
89105
secretRef: value.secretRef,
90106
url: value.url,

containerized-data-importer/models/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ export * from './V1beta1DataImportCronStatus';
6161
export * from './V1beta1DataSource';
6262
export * from './V1beta1DataSourceCondition';
6363
export * from './V1beta1DataSourceList';
64+
export * from './V1beta1DataSourceRefSourceDataSource';
6465
export * from './V1beta1DataSourceSource';
6566
export * from './V1beta1DataSourceSpec';
6667
export * from './V1beta1DataSourceStatus';
@@ -84,6 +85,7 @@ export * from './V1beta1FilesystemOverhead';
8485
export * from './V1beta1Flags';
8586
export * from './V1beta1ImportProxy';
8687
export * from './V1beta1ImportStatus';
88+
export * from './V1beta1PlatformOptions';
8789
export * from './V1beta1StorageSpec';
8890
export * from './V1beta1TLSSecurityProfile';
8991
export * from './V1beta1UploadTokenRequest';

docs/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/enums/kubevirt_models.V1KubeVirtSpecImagePullPolicyEnum.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/enums/kubevirt_models.V1VirtualMachineInstanceSpecDnsPolicyEnum.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/enums/kubevirt_models.V1VirtualMachineInstanceStatusQosClassEnum.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/interfaces/containerized_data_importer_models.V1beta1DataSourceSource.html

Lines changed: 4 additions & 3 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)