Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make openapi changes symmetric with CLI #129

Merged
merged 3 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [3.16.1] - 2024-06-27
### Fixed
- Corrected openapi spec definition to match CLI

## [3.16.0] - 2024-06-26
### Added
- CASMCMS-8915: IMS API features for tagging built images.
Expand Down
37 changes: 18 additions & 19 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2245,21 +2245,6 @@ components:
type: array
items:
$ref: '#/components/schemas/RecipeKeyValuePair'
ImageMetadataAnnotationKeyValuePair:
description: Key/value pair used to further define an Image
type: object
required:
- key
- value
properties:
key:
description: Template variable to associate with the IMS image
example: includes_additional_packages
type: string
value:
description: Value variable to associate with the IMS image
example: "foo,bar,baz"
type: string
ImagePatchRecord:
description: Values used to update an existing IMS Image Record
type: object
Expand Down Expand Up @@ -2327,10 +2312,17 @@ components:
- x86_64
type: string
metadata:
description: An object of key/value associated with an Image
description: User supplied annotations about an image
type: object
properties:
$ref: '#/components/schemas/ImageMetadataAnnotationKeyValuePair'
key:
description: Template variable to associate with the IMS image
example: includes_additional_packages
type: string
value:
description: Value variable to associate with the IMS image
example: "foo,bar,baz"
type: string
DeletedImageRecord:
description: A Deleted Image Record
type: object
Expand Down Expand Up @@ -2371,10 +2363,17 @@ components:
- x86_64
type: string
metadata:
description: List of key/value pairs to associate with an Image
description: User supplied annotations about an image
type: object
properties:
$ref: '#/components/schemas/ImageMetadataAnnotationKeyValuePair'
key:
description: Template variable to associate with the IMS image
example: includes_additional_packages
type: string
value:
description: Value variable to associate with the IMS image
example: "foo,bar,baz"
type: string
JobRecord:
description: A Job Record
type: object
Expand Down
Loading