Download OpenAPI specification:Download
AMI sharing service
Returns a list of current images.
| product_type | string (product_type) Enum: "ids" "scan" "wsm" Product Type |
| platform_type | string (platform_type) Value: "aws" Platform Type |
[- {
- "type": "aws",
- "product": "ids",
- "images": [
- {
- "us-east-1": "ami-11111111111111111",
- "us-west-1": "ami-22222222222222222"
}
]
}
]Returns a list of all image records, including their ami name and description.
[- {
- "product_type": "ids",
- "platform_type": "aws",
- "id": "ami-11111111111111111",
- "details": {
- "region": "us-east-1",
- "ami_name": "example name"
}, - "description": "example description"
}
]Get a specific version set of images.
| platform_type required | string (platform_type) Value: "aws" platform type |
| product_type required | string (product_type) Enum: "ids" "scan" "wsm" product type |
| version required | string (version) Example: v1.0.0 |
[- {
- "type": "aws",
- "product": "ids",
- "images": [
- {
- "image_id": "string",
- "region": "string"
}
]
}
]Enable a specific version set of images.
| platform_type required | string (platform_type) Value: "aws" platform type |
| product_type required | string (product_type) Enum: "ids" "scan" "wsm" product type |
| version required | string (version) Example: v1.0.0 |
Add a new version of images.
| platform_type required | string (platform_type) Value: "aws" platform type |
| product_type required | string (product_type) Enum: "ids" "scan" "wsm" product type |
| version required | string (version) Example: v1.0.0 |
| ami_name required | string (ami_name) non-empty Description for the image |
| description required | string (description) Description for the image |
required | Array of objects (image_array) >= 0 items |
An array of records that will be added to the db, this will also put all ami in the request under a single version.
{- "ami_name": "Example-AMI-Name",
- "description": "Example-AMI-Description",
- "image_array": [
- {
- "image_id": "ami-11111111111111111",
- "region": "us-east-1"
}, - {
- "image_id": "ami-22222222222222222",
- "region": "us-east-2"
}, - {
- "image_id": "ami-33333333333333333",
- "region": "us-west-1"
}, - {
- "image_id": "ami-44444444444444444",
- "region": "us-west-2"
}
]
}