Aquasec v0.8.29 published on Monday, Jul 22, 2024 by Pulumiverse
aquasec.Image
Explore with Pulumi AI
Create Image Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Image(name: string, args: ImageArgs, opts?: CustomResourceOptions);
@overload
def Image(resource_name: str,
args: ImageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Image(resource_name: str,
opts: Optional[ResourceOptions] = None,
registry: Optional[str] = None,
repository: Optional[str] = None,
tag: Optional[str] = None,
allow_image: Optional[bool] = None,
block_image: Optional[bool] = None,
permission_modification_comment: Optional[str] = None)
func NewImage(ctx *Context, name string, args ImageArgs, opts ...ResourceOption) (*Image, error)
public Image(string name, ImageArgs args, CustomResourceOptions? opts = null)
type: aquasec:Image
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ImageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ImageArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ImageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ImageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ImageArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var imageResource = new Aquasec.Image("imageResource", new()
{
Registry = "string",
Repository = "string",
Tag = "string",
AllowImage = false,
BlockImage = false,
PermissionModificationComment = "string",
});
example, err := aquasec.NewImage(ctx, "imageResource", &aquasec.ImageArgs{
Registry: pulumi.String("string"),
Repository: pulumi.String("string"),
Tag: pulumi.String("string"),
AllowImage: pulumi.Bool(false),
BlockImage: pulumi.Bool(false),
PermissionModificationComment: pulumi.String("string"),
})
var imageResource = new Image("imageResource", ImageArgs.builder()
.registry("string")
.repository("string")
.tag("string")
.allowImage(false)
.blockImage(false)
.permissionModificationComment("string")
.build());
image_resource = aquasec.Image("imageResource",
registry="string",
repository="string",
tag="string",
allow_image=False,
block_image=False,
permission_modification_comment="string")
const imageResource = new aquasec.Image("imageResource", {
registry: "string",
repository: "string",
tag: "string",
allowImage: false,
blockImage: false,
permissionModificationComment: "string",
});
type: aquasec:Image
properties:
allowImage: false
blockImage: false
permissionModificationComment: string
registry: string
repository: string
tag: string
Image Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Image resource accepts the following input properties:
- Registry string
- The name of the registry where the image is stored.
- Repository string
- The name of the image's repository.
- Tag string
- The tag of the image.
- Allow
Image bool - If this field is set to true, the image will be whitelisted.
- Block
Image bool - If this field is set to true, the image will be blacklisted.
- Permission
Modification stringComment - A comment on why the image was whitelisted or blacklisted
- Registry string
- The name of the registry where the image is stored.
- Repository string
- The name of the image's repository.
- Tag string
- The tag of the image.
- Allow
Image bool - If this field is set to true, the image will be whitelisted.
- Block
Image bool - If this field is set to true, the image will be blacklisted.
- Permission
Modification stringComment - A comment on why the image was whitelisted or blacklisted
- registry String
- The name of the registry where the image is stored.
- repository String
- The name of the image's repository.
- tag String
- The tag of the image.
- allow
Image Boolean - If this field is set to true, the image will be whitelisted.
- block
Image Boolean - If this field is set to true, the image will be blacklisted.
- permission
Modification StringComment - A comment on why the image was whitelisted or blacklisted
- registry string
- The name of the registry where the image is stored.
- repository string
- The name of the image's repository.
- tag string
- The tag of the image.
- allow
Image boolean - If this field is set to true, the image will be whitelisted.
- block
Image boolean - If this field is set to true, the image will be blacklisted.
- permission
Modification stringComment - A comment on why the image was whitelisted or blacklisted
- registry str
- The name of the registry where the image is stored.
- repository str
- The name of the image's repository.
- tag str
- The tag of the image.
- allow_
image bool - If this field is set to true, the image will be whitelisted.
- block_
image bool - If this field is set to true, the image will be blacklisted.
- permission_
modification_ strcomment - A comment on why the image was whitelisted or blacklisted
- registry String
- The name of the registry where the image is stored.
- repository String
- The name of the image's repository.
- tag String
- The tag of the image.
- allow
Image Boolean - If this field is set to true, the image will be whitelisted.
- block
Image Boolean - If this field is set to true, the image will be blacklisted.
- permission
Modification StringComment - A comment on why the image was whitelisted or blacklisted
Outputs
All input properties are implicitly available as output properties. Additionally, the Image resource produces the following output properties:
- Architecture string
- The image architecture.
- Assurance
Checks List<Pulumiverse.Performeds Aquasec. Outputs. Image Assurance Checks Performed> - The list of image assurance checks performed on the image.
- string
- The name of the user who registered the image.
- Blacklisted bool
- Whether the image is blacklisted.
- Comment string
- The image creation comment.
- Created string
- The date and time when the image was registered.
- Critical
Vulnerabilities int - Number of critical severity vulnerabilities detected in the image.
- Default
User string - The default user of the image.
- Digest string
- The content digest of the image.
- Disallowed bool
- Whether the image is disallowed (non-compliant).
- Disallowed
By boolAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- Docker
Id string - The Docker image ID.
- Docker
Labels List<string> - Docker labels of the image.
- Docker
Version string - The Docker version used when building the image.
- Dta
Severity stringScore - DTA severity score.
- Dta
Skipped bool - If DTA was skipped.
- Dta
Skipped stringReason - The reason why DTA was skipped.
- Environment
Variables List<string> - Environment variables in the image.
- High
Vulnerabilities int - Number of high severity vulnerabilities detected in the image.
- Histories
List<Pulumiverse.
Aquasec. Outputs. Image History> - The Docker history of the image.
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Size int - The size of the image in bytes.
- Image
Type string - The type of the image.
- Labels List<string>
- Aqua labels of the image.
- Low
Vulnerabilities int - Number of low severity vulnerabilities detected in the image.
- Malware int
- Number of malware found on the image.
- Medium
Vulnerabilities int - Number of medium severity vulnerabilities detected in the image.
- Name string
- The name of the image.
- Negligible
Vulnerabilities int - Number of negligible severity vulnerabilities detected in the image.
- Newer
Image boolExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- Os string
- The operating system detected in the image
- Os
Version string - The version of the OS detected in the image.
- Parent string
- The ID of the parent image.
- Partial
Results bool - Whether the image could only be partially scanned.
- Pending
Disallowed bool - Whether the image is non-compliant, but is pending this status due to running containers.
- Permission string
- Permission of the image.
- string
- The name of the user who last modified the image permissions.
- Permission
Comment string - The comment provided when the image permissions were last modified
- Registry
Type string - Type of the registry.
- Repo
Digests List<string> - The repository digests.
- Scan
Date string - The date and time when the image was last scanned.
- Scan
Error string - If the image scan failed, the failure message.
- Scan
Status string - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- Sensitive
Data int - Number of sensitive data detected in the image.
- Total
Vulnerabilities int - The total number of vulnerabilities detected in the image.
- Virtual
Size int - The virtual size of the image.
- Vulnerabilities
List<Pulumiverse.
Aquasec. Outputs. Image Vulnerability> - A list of all the vulnerabilities found in the image
- Whitelisted bool
- Whether the image is whitelisted.
- Architecture string
- The image architecture.
- Assurance
Checks []ImagePerformeds Assurance Checks Performed - The list of image assurance checks performed on the image.
- string
- The name of the user who registered the image.
- Blacklisted bool
- Whether the image is blacklisted.
- Comment string
- The image creation comment.
- Created string
- The date and time when the image was registered.
- Critical
Vulnerabilities int - Number of critical severity vulnerabilities detected in the image.
- Default
User string - The default user of the image.
- Digest string
- The content digest of the image.
- Disallowed bool
- Whether the image is disallowed (non-compliant).
- Disallowed
By boolAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- Docker
Id string - The Docker image ID.
- Docker
Labels []string - Docker labels of the image.
- Docker
Version string - The Docker version used when building the image.
- Dta
Severity stringScore - DTA severity score.
- Dta
Skipped bool - If DTA was skipped.
- Dta
Skipped stringReason - The reason why DTA was skipped.
- Environment
Variables []string - Environment variables in the image.
- High
Vulnerabilities int - Number of high severity vulnerabilities detected in the image.
- Histories
[]Image
History - The Docker history of the image.
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Size int - The size of the image in bytes.
- Image
Type string - The type of the image.
- Labels []string
- Aqua labels of the image.
- Low
Vulnerabilities int - Number of low severity vulnerabilities detected in the image.
- Malware int
- Number of malware found on the image.
- Medium
Vulnerabilities int - Number of medium severity vulnerabilities detected in the image.
- Name string
- The name of the image.
- Negligible
Vulnerabilities int - Number of negligible severity vulnerabilities detected in the image.
- Newer
Image boolExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- Os string
- The operating system detected in the image
- Os
Version string - The version of the OS detected in the image.
- Parent string
- The ID of the parent image.
- Partial
Results bool - Whether the image could only be partially scanned.
- Pending
Disallowed bool - Whether the image is non-compliant, but is pending this status due to running containers.
- Permission string
- Permission of the image.
- string
- The name of the user who last modified the image permissions.
- Permission
Comment string - The comment provided when the image permissions were last modified
- Registry
Type string - Type of the registry.
- Repo
Digests []string - The repository digests.
- Scan
Date string - The date and time when the image was last scanned.
- Scan
Error string - If the image scan failed, the failure message.
- Scan
Status string - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- Sensitive
Data int - Number of sensitive data detected in the image.
- Total
Vulnerabilities int - The total number of vulnerabilities detected in the image.
- Virtual
Size int - The virtual size of the image.
- Vulnerabilities
[]Image
Vulnerability - A list of all the vulnerabilities found in the image
- Whitelisted bool
- Whether the image is whitelisted.
- architecture String
- The image architecture.
- assurance
Checks List<ImagePerformeds Assurance Checks Performed> - The list of image assurance checks performed on the image.
- String
- The name of the user who registered the image.
- blacklisted Boolean
- Whether the image is blacklisted.
- comment String
- The image creation comment.
- created String
- The date and time when the image was registered.
- critical
Vulnerabilities Integer - Number of critical severity vulnerabilities detected in the image.
- default
User String - The default user of the image.
- digest String
- The content digest of the image.
- disallowed Boolean
- Whether the image is disallowed (non-compliant).
- disallowed
By BooleanAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- docker
Id String - The Docker image ID.
- docker
Labels List<String> - Docker labels of the image.
- docker
Version String - The Docker version used when building the image.
- dta
Severity StringScore - DTA severity score.
- dta
Skipped Boolean - If DTA was skipped.
- dta
Skipped StringReason - The reason why DTA was skipped.
- environment
Variables List<String> - Environment variables in the image.
- high
Vulnerabilities Integer - Number of high severity vulnerabilities detected in the image.
- histories
List<Image
History> - The Docker history of the image.
- id String
- The provider-assigned unique ID for this managed resource.
- image
Size Integer - The size of the image in bytes.
- image
Type String - The type of the image.
- labels List<String>
- Aqua labels of the image.
- low
Vulnerabilities Integer - Number of low severity vulnerabilities detected in the image.
- malware Integer
- Number of malware found on the image.
- medium
Vulnerabilities Integer - Number of medium severity vulnerabilities detected in the image.
- name String
- The name of the image.
- negligible
Vulnerabilities Integer - Number of negligible severity vulnerabilities detected in the image.
- newer
Image BooleanExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- os String
- The operating system detected in the image
- os
Version String - The version of the OS detected in the image.
- parent String
- The ID of the parent image.
- partial
Results Boolean - Whether the image could only be partially scanned.
- pending
Disallowed Boolean - Whether the image is non-compliant, but is pending this status due to running containers.
- permission String
- Permission of the image.
- String
- The name of the user who last modified the image permissions.
- permission
Comment String - The comment provided when the image permissions were last modified
- registry
Type String - Type of the registry.
- repo
Digests List<String> - The repository digests.
- scan
Date String - The date and time when the image was last scanned.
- scan
Error String - If the image scan failed, the failure message.
- scan
Status String - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- sensitive
Data Integer - Number of sensitive data detected in the image.
- total
Vulnerabilities Integer - The total number of vulnerabilities detected in the image.
- virtual
Size Integer - The virtual size of the image.
- vulnerabilities
List<Image
Vulnerability> - A list of all the vulnerabilities found in the image
- whitelisted Boolean
- Whether the image is whitelisted.
- architecture string
- The image architecture.
- assurance
Checks ImagePerformeds Assurance Checks Performed[] - The list of image assurance checks performed on the image.
- string
- The name of the user who registered the image.
- blacklisted boolean
- Whether the image is blacklisted.
- comment string
- The image creation comment.
- created string
- The date and time when the image was registered.
- critical
Vulnerabilities number - Number of critical severity vulnerabilities detected in the image.
- default
User string - The default user of the image.
- digest string
- The content digest of the image.
- disallowed boolean
- Whether the image is disallowed (non-compliant).
- disallowed
By booleanAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- docker
Id string - The Docker image ID.
- docker
Labels string[] - Docker labels of the image.
- docker
Version string - The Docker version used when building the image.
- dta
Severity stringScore - DTA severity score.
- dta
Skipped boolean - If DTA was skipped.
- dta
Skipped stringReason - The reason why DTA was skipped.
- environment
Variables string[] - Environment variables in the image.
- high
Vulnerabilities number - Number of high severity vulnerabilities detected in the image.
- histories
Image
History[] - The Docker history of the image.
- id string
- The provider-assigned unique ID for this managed resource.
- image
Size number - The size of the image in bytes.
- image
Type string - The type of the image.
- labels string[]
- Aqua labels of the image.
- low
Vulnerabilities number - Number of low severity vulnerabilities detected in the image.
- malware number
- Number of malware found on the image.
- medium
Vulnerabilities number - Number of medium severity vulnerabilities detected in the image.
- name string
- The name of the image.
- negligible
Vulnerabilities number - Number of negligible severity vulnerabilities detected in the image.
- newer
Image booleanExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- os string
- The operating system detected in the image
- os
Version string - The version of the OS detected in the image.
- parent string
- The ID of the parent image.
- partial
Results boolean - Whether the image could only be partially scanned.
- pending
Disallowed boolean - Whether the image is non-compliant, but is pending this status due to running containers.
- permission string
- Permission of the image.
- string
- The name of the user who last modified the image permissions.
- permission
Comment string - The comment provided when the image permissions were last modified
- registry
Type string - Type of the registry.
- repo
Digests string[] - The repository digests.
- scan
Date string - The date and time when the image was last scanned.
- scan
Error string - If the image scan failed, the failure message.
- scan
Status string - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- sensitive
Data number - Number of sensitive data detected in the image.
- total
Vulnerabilities number - The total number of vulnerabilities detected in the image.
- virtual
Size number - The virtual size of the image.
- vulnerabilities
Image
Vulnerability[] - A list of all the vulnerabilities found in the image
- whitelisted boolean
- Whether the image is whitelisted.
- architecture str
- The image architecture.
- assurance_
checks_ Sequence[Imageperformeds Assurance Checks Performed] - The list of image assurance checks performed on the image.
- str
- The name of the user who registered the image.
- blacklisted bool
- Whether the image is blacklisted.
- comment str
- The image creation comment.
- created str
- The date and time when the image was registered.
- critical_
vulnerabilities int - Number of critical severity vulnerabilities detected in the image.
- default_
user str - The default user of the image.
- digest str
- The content digest of the image.
- disallowed bool
- Whether the image is disallowed (non-compliant).
- disallowed_
by_ boolassurance_ checks - Whether the image was disallowed because of Image Assurance Policies.
- docker_
id str - The Docker image ID.
- docker_
labels Sequence[str] - Docker labels of the image.
- docker_
version str - The Docker version used when building the image.
- dta_
severity_ strscore - DTA severity score.
- dta_
skipped bool - If DTA was skipped.
- dta_
skipped_ strreason - The reason why DTA was skipped.
- environment_
variables Sequence[str] - Environment variables in the image.
- high_
vulnerabilities int - Number of high severity vulnerabilities detected in the image.
- histories
Sequence[Image
History] - The Docker history of the image.
- id str
- The provider-assigned unique ID for this managed resource.
- image_
size int - The size of the image in bytes.
- image_
type str - The type of the image.
- labels Sequence[str]
- Aqua labels of the image.
- low_
vulnerabilities int - Number of low severity vulnerabilities detected in the image.
- malware int
- Number of malware found on the image.
- medium_
vulnerabilities int - Number of medium severity vulnerabilities detected in the image.
- name str
- The name of the image.
- negligible_
vulnerabilities int - Number of negligible severity vulnerabilities detected in the image.
- newer_
image_ boolexists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- os str
- The operating system detected in the image
- os_
version str - The version of the OS detected in the image.
- parent str
- The ID of the parent image.
- partial_
results bool - Whether the image could only be partially scanned.
- pending_
disallowed bool - Whether the image is non-compliant, but is pending this status due to running containers.
- permission str
- Permission of the image.
- str
- The name of the user who last modified the image permissions.
- permission_
comment str - The comment provided when the image permissions were last modified
- registry_
type str - Type of the registry.
- repo_
digests Sequence[str] - The repository digests.
- scan_
date str - The date and time when the image was last scanned.
- scan_
error str - If the image scan failed, the failure message.
- scan_
status str - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- sensitive_
data int - Number of sensitive data detected in the image.
- total_
vulnerabilities int - The total number of vulnerabilities detected in the image.
- virtual_
size int - The virtual size of the image.
- vulnerabilities
Sequence[Image
Vulnerability] - A list of all the vulnerabilities found in the image
- whitelisted bool
- Whether the image is whitelisted.
- architecture String
- The image architecture.
- assurance
Checks List<Property Map>Performeds - The list of image assurance checks performed on the image.
- String
- The name of the user who registered the image.
- blacklisted Boolean
- Whether the image is blacklisted.
- comment String
- The image creation comment.
- created String
- The date and time when the image was registered.
- critical
Vulnerabilities Number - Number of critical severity vulnerabilities detected in the image.
- default
User String - The default user of the image.
- digest String
- The content digest of the image.
- disallowed Boolean
- Whether the image is disallowed (non-compliant).
- disallowed
By BooleanAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- docker
Id String - The Docker image ID.
- docker
Labels List<String> - Docker labels of the image.
- docker
Version String - The Docker version used when building the image.
- dta
Severity StringScore - DTA severity score.
- dta
Skipped Boolean - If DTA was skipped.
- dta
Skipped StringReason - The reason why DTA was skipped.
- environment
Variables List<String> - Environment variables in the image.
- high
Vulnerabilities Number - Number of high severity vulnerabilities detected in the image.
- histories List<Property Map>
- The Docker history of the image.
- id String
- The provider-assigned unique ID for this managed resource.
- image
Size Number - The size of the image in bytes.
- image
Type String - The type of the image.
- labels List<String>
- Aqua labels of the image.
- low
Vulnerabilities Number - Number of low severity vulnerabilities detected in the image.
- malware Number
- Number of malware found on the image.
- medium
Vulnerabilities Number - Number of medium severity vulnerabilities detected in the image.
- name String
- The name of the image.
- negligible
Vulnerabilities Number - Number of negligible severity vulnerabilities detected in the image.
- newer
Image BooleanExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- os String
- The operating system detected in the image
- os
Version String - The version of the OS detected in the image.
- parent String
- The ID of the parent image.
- partial
Results Boolean - Whether the image could only be partially scanned.
- pending
Disallowed Boolean - Whether the image is non-compliant, but is pending this status due to running containers.
- permission String
- Permission of the image.
- String
- The name of the user who last modified the image permissions.
- permission
Comment String - The comment provided when the image permissions were last modified
- registry
Type String - Type of the registry.
- repo
Digests List<String> - The repository digests.
- scan
Date String - The date and time when the image was last scanned.
- scan
Error String - If the image scan failed, the failure message.
- scan
Status String - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- sensitive
Data Number - Number of sensitive data detected in the image.
- total
Vulnerabilities Number - The total number of vulnerabilities detected in the image.
- virtual
Size Number - The virtual size of the image.
- vulnerabilities List<Property Map>
- A list of all the vulnerabilities found in the image
- whitelisted Boolean
- Whether the image is whitelisted.
Look up Existing Image Resource
Get an existing Image resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ImageState, opts?: CustomResourceOptions): Image
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_image: Optional[bool] = None,
architecture: Optional[str] = None,
assurance_checks_performeds: Optional[Sequence[ImageAssuranceChecksPerformedArgs]] = None,
author: Optional[str] = None,
blacklisted: Optional[bool] = None,
block_image: Optional[bool] = None,
comment: Optional[str] = None,
created: Optional[str] = None,
critical_vulnerabilities: Optional[int] = None,
default_user: Optional[str] = None,
digest: Optional[str] = None,
disallowed: Optional[bool] = None,
disallowed_by_assurance_checks: Optional[bool] = None,
docker_id: Optional[str] = None,
docker_labels: Optional[Sequence[str]] = None,
docker_version: Optional[str] = None,
dta_severity_score: Optional[str] = None,
dta_skipped: Optional[bool] = None,
dta_skipped_reason: Optional[str] = None,
environment_variables: Optional[Sequence[str]] = None,
high_vulnerabilities: Optional[int] = None,
histories: Optional[Sequence[ImageHistoryArgs]] = None,
image_size: Optional[int] = None,
image_type: Optional[str] = None,
labels: Optional[Sequence[str]] = None,
low_vulnerabilities: Optional[int] = None,
malware: Optional[int] = None,
medium_vulnerabilities: Optional[int] = None,
name: Optional[str] = None,
negligible_vulnerabilities: Optional[int] = None,
newer_image_exists: Optional[bool] = None,
os: Optional[str] = None,
os_version: Optional[str] = None,
parent: Optional[str] = None,
partial_results: Optional[bool] = None,
pending_disallowed: Optional[bool] = None,
permission: Optional[str] = None,
permission_author: Optional[str] = None,
permission_comment: Optional[str] = None,
permission_modification_comment: Optional[str] = None,
registry: Optional[str] = None,
registry_type: Optional[str] = None,
repo_digests: Optional[Sequence[str]] = None,
repository: Optional[str] = None,
scan_date: Optional[str] = None,
scan_error: Optional[str] = None,
scan_status: Optional[str] = None,
sensitive_data: Optional[int] = None,
tag: Optional[str] = None,
total_vulnerabilities: Optional[int] = None,
virtual_size: Optional[int] = None,
vulnerabilities: Optional[Sequence[ImageVulnerabilityArgs]] = None,
whitelisted: Optional[bool] = None) -> Image
func GetImage(ctx *Context, name string, id IDInput, state *ImageState, opts ...ResourceOption) (*Image, error)
public static Image Get(string name, Input<string> id, ImageState? state, CustomResourceOptions? opts = null)
public static Image get(String name, Output<String> id, ImageState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Allow
Image bool - If this field is set to true, the image will be whitelisted.
- Architecture string
- The image architecture.
- Assurance
Checks List<Pulumiverse.Performeds Aquasec. Inputs. Image Assurance Checks Performed> - The list of image assurance checks performed on the image.
- string
- The name of the user who registered the image.
- Blacklisted bool
- Whether the image is blacklisted.
- Block
Image bool - If this field is set to true, the image will be blacklisted.
- Comment string
- The image creation comment.
- Created string
- The date and time when the image was registered.
- Critical
Vulnerabilities int - Number of critical severity vulnerabilities detected in the image.
- Default
User string - The default user of the image.
- Digest string
- The content digest of the image.
- Disallowed bool
- Whether the image is disallowed (non-compliant).
- Disallowed
By boolAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- Docker
Id string - The Docker image ID.
- Docker
Labels List<string> - Docker labels of the image.
- Docker
Version string - The Docker version used when building the image.
- Dta
Severity stringScore - DTA severity score.
- Dta
Skipped bool - If DTA was skipped.
- Dta
Skipped stringReason - The reason why DTA was skipped.
- Environment
Variables List<string> - Environment variables in the image.
- High
Vulnerabilities int - Number of high severity vulnerabilities detected in the image.
- Histories
List<Pulumiverse.
Aquasec. Inputs. Image History> - The Docker history of the image.
- Image
Size int - The size of the image in bytes.
- Image
Type string - The type of the image.
- Labels List<string>
- Aqua labels of the image.
- Low
Vulnerabilities int - Number of low severity vulnerabilities detected in the image.
- Malware int
- Number of malware found on the image.
- Medium
Vulnerabilities int - Number of medium severity vulnerabilities detected in the image.
- Name string
- The name of the image.
- Negligible
Vulnerabilities int - Number of negligible severity vulnerabilities detected in the image.
- Newer
Image boolExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- Os string
- The operating system detected in the image
- Os
Version string - The version of the OS detected in the image.
- Parent string
- The ID of the parent image.
- Partial
Results bool - Whether the image could only be partially scanned.
- Pending
Disallowed bool - Whether the image is non-compliant, but is pending this status due to running containers.
- Permission string
- Permission of the image.
- string
- The name of the user who last modified the image permissions.
- Permission
Comment string - The comment provided when the image permissions were last modified
- Permission
Modification stringComment - A comment on why the image was whitelisted or blacklisted
- Registry string
- The name of the registry where the image is stored.
- Registry
Type string - Type of the registry.
- Repo
Digests List<string> - The repository digests.
- Repository string
- The name of the image's repository.
- Scan
Date string - The date and time when the image was last scanned.
- Scan
Error string - If the image scan failed, the failure message.
- Scan
Status string - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- Sensitive
Data int - Number of sensitive data detected in the image.
- Tag string
- The tag of the image.
- Total
Vulnerabilities int - The total number of vulnerabilities detected in the image.
- Virtual
Size int - The virtual size of the image.
- Vulnerabilities
List<Pulumiverse.
Aquasec. Inputs. Image Vulnerability> - A list of all the vulnerabilities found in the image
- Whitelisted bool
- Whether the image is whitelisted.
- Allow
Image bool - If this field is set to true, the image will be whitelisted.
- Architecture string
- The image architecture.
- Assurance
Checks []ImagePerformeds Assurance Checks Performed Args - The list of image assurance checks performed on the image.
- string
- The name of the user who registered the image.
- Blacklisted bool
- Whether the image is blacklisted.
- Block
Image bool - If this field is set to true, the image will be blacklisted.
- Comment string
- The image creation comment.
- Created string
- The date and time when the image was registered.
- Critical
Vulnerabilities int - Number of critical severity vulnerabilities detected in the image.
- Default
User string - The default user of the image.
- Digest string
- The content digest of the image.
- Disallowed bool
- Whether the image is disallowed (non-compliant).
- Disallowed
By boolAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- Docker
Id string - The Docker image ID.
- Docker
Labels []string - Docker labels of the image.
- Docker
Version string - The Docker version used when building the image.
- Dta
Severity stringScore - DTA severity score.
- Dta
Skipped bool - If DTA was skipped.
- Dta
Skipped stringReason - The reason why DTA was skipped.
- Environment
Variables []string - Environment variables in the image.
- High
Vulnerabilities int - Number of high severity vulnerabilities detected in the image.
- Histories
[]Image
History Args - The Docker history of the image.
- Image
Size int - The size of the image in bytes.
- Image
Type string - The type of the image.
- Labels []string
- Aqua labels of the image.
- Low
Vulnerabilities int - Number of low severity vulnerabilities detected in the image.
- Malware int
- Number of malware found on the image.
- Medium
Vulnerabilities int - Number of medium severity vulnerabilities detected in the image.
- Name string
- The name of the image.
- Negligible
Vulnerabilities int - Number of negligible severity vulnerabilities detected in the image.
- Newer
Image boolExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- Os string
- The operating system detected in the image
- Os
Version string - The version of the OS detected in the image.
- Parent string
- The ID of the parent image.
- Partial
Results bool - Whether the image could only be partially scanned.
- Pending
Disallowed bool - Whether the image is non-compliant, but is pending this status due to running containers.
- Permission string
- Permission of the image.
- string
- The name of the user who last modified the image permissions.
- Permission
Comment string - The comment provided when the image permissions were last modified
- Permission
Modification stringComment - A comment on why the image was whitelisted or blacklisted
- Registry string
- The name of the registry where the image is stored.
- Registry
Type string - Type of the registry.
- Repo
Digests []string - The repository digests.
- Repository string
- The name of the image's repository.
- Scan
Date string - The date and time when the image was last scanned.
- Scan
Error string - If the image scan failed, the failure message.
- Scan
Status string - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- Sensitive
Data int - Number of sensitive data detected in the image.
- Tag string
- The tag of the image.
- Total
Vulnerabilities int - The total number of vulnerabilities detected in the image.
- Virtual
Size int - The virtual size of the image.
- Vulnerabilities
[]Image
Vulnerability Args - A list of all the vulnerabilities found in the image
- Whitelisted bool
- Whether the image is whitelisted.
- allow
Image Boolean - If this field is set to true, the image will be whitelisted.
- architecture String
- The image architecture.
- assurance
Checks List<ImagePerformeds Assurance Checks Performed> - The list of image assurance checks performed on the image.
- String
- The name of the user who registered the image.
- blacklisted Boolean
- Whether the image is blacklisted.
- block
Image Boolean - If this field is set to true, the image will be blacklisted.
- comment String
- The image creation comment.
- created String
- The date and time when the image was registered.
- critical
Vulnerabilities Integer - Number of critical severity vulnerabilities detected in the image.
- default
User String - The default user of the image.
- digest String
- The content digest of the image.
- disallowed Boolean
- Whether the image is disallowed (non-compliant).
- disallowed
By BooleanAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- docker
Id String - The Docker image ID.
- docker
Labels List<String> - Docker labels of the image.
- docker
Version String - The Docker version used when building the image.
- dta
Severity StringScore - DTA severity score.
- dta
Skipped Boolean - If DTA was skipped.
- dta
Skipped StringReason - The reason why DTA was skipped.
- environment
Variables List<String> - Environment variables in the image.
- high
Vulnerabilities Integer - Number of high severity vulnerabilities detected in the image.
- histories
List<Image
History> - The Docker history of the image.
- image
Size Integer - The size of the image in bytes.
- image
Type String - The type of the image.
- labels List<String>
- Aqua labels of the image.
- low
Vulnerabilities Integer - Number of low severity vulnerabilities detected in the image.
- malware Integer
- Number of malware found on the image.
- medium
Vulnerabilities Integer - Number of medium severity vulnerabilities detected in the image.
- name String
- The name of the image.
- negligible
Vulnerabilities Integer - Number of negligible severity vulnerabilities detected in the image.
- newer
Image BooleanExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- os String
- The operating system detected in the image
- os
Version String - The version of the OS detected in the image.
- parent String
- The ID of the parent image.
- partial
Results Boolean - Whether the image could only be partially scanned.
- pending
Disallowed Boolean - Whether the image is non-compliant, but is pending this status due to running containers.
- permission String
- Permission of the image.
- String
- The name of the user who last modified the image permissions.
- permission
Comment String - The comment provided when the image permissions were last modified
- permission
Modification StringComment - A comment on why the image was whitelisted or blacklisted
- registry String
- The name of the registry where the image is stored.
- registry
Type String - Type of the registry.
- repo
Digests List<String> - The repository digests.
- repository String
- The name of the image's repository.
- scan
Date String - The date and time when the image was last scanned.
- scan
Error String - If the image scan failed, the failure message.
- scan
Status String - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- sensitive
Data Integer - Number of sensitive data detected in the image.
- tag String
- The tag of the image.
- total
Vulnerabilities Integer - The total number of vulnerabilities detected in the image.
- virtual
Size Integer - The virtual size of the image.
- vulnerabilities
List<Image
Vulnerability> - A list of all the vulnerabilities found in the image
- whitelisted Boolean
- Whether the image is whitelisted.
- allow
Image boolean - If this field is set to true, the image will be whitelisted.
- architecture string
- The image architecture.
- assurance
Checks ImagePerformeds Assurance Checks Performed[] - The list of image assurance checks performed on the image.
- string
- The name of the user who registered the image.
- blacklisted boolean
- Whether the image is blacklisted.
- block
Image boolean - If this field is set to true, the image will be blacklisted.
- comment string
- The image creation comment.
- created string
- The date and time when the image was registered.
- critical
Vulnerabilities number - Number of critical severity vulnerabilities detected in the image.
- default
User string - The default user of the image.
- digest string
- The content digest of the image.
- disallowed boolean
- Whether the image is disallowed (non-compliant).
- disallowed
By booleanAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- docker
Id string - The Docker image ID.
- docker
Labels string[] - Docker labels of the image.
- docker
Version string - The Docker version used when building the image.
- dta
Severity stringScore - DTA severity score.
- dta
Skipped boolean - If DTA was skipped.
- dta
Skipped stringReason - The reason why DTA was skipped.
- environment
Variables string[] - Environment variables in the image.
- high
Vulnerabilities number - Number of high severity vulnerabilities detected in the image.
- histories
Image
History[] - The Docker history of the image.
- image
Size number - The size of the image in bytes.
- image
Type string - The type of the image.
- labels string[]
- Aqua labels of the image.
- low
Vulnerabilities number - Number of low severity vulnerabilities detected in the image.
- malware number
- Number of malware found on the image.
- medium
Vulnerabilities number - Number of medium severity vulnerabilities detected in the image.
- name string
- The name of the image.
- negligible
Vulnerabilities number - Number of negligible severity vulnerabilities detected in the image.
- newer
Image booleanExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- os string
- The operating system detected in the image
- os
Version string - The version of the OS detected in the image.
- parent string
- The ID of the parent image.
- partial
Results boolean - Whether the image could only be partially scanned.
- pending
Disallowed boolean - Whether the image is non-compliant, but is pending this status due to running containers.
- permission string
- Permission of the image.
- string
- The name of the user who last modified the image permissions.
- permission
Comment string - The comment provided when the image permissions were last modified
- permission
Modification stringComment - A comment on why the image was whitelisted or blacklisted
- registry string
- The name of the registry where the image is stored.
- registry
Type string - Type of the registry.
- repo
Digests string[] - The repository digests.
- repository string
- The name of the image's repository.
- scan
Date string - The date and time when the image was last scanned.
- scan
Error string - If the image scan failed, the failure message.
- scan
Status string - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- sensitive
Data number - Number of sensitive data detected in the image.
- tag string
- The tag of the image.
- total
Vulnerabilities number - The total number of vulnerabilities detected in the image.
- virtual
Size number - The virtual size of the image.
- vulnerabilities
Image
Vulnerability[] - A list of all the vulnerabilities found in the image
- whitelisted boolean
- Whether the image is whitelisted.
- allow_
image bool - If this field is set to true, the image will be whitelisted.
- architecture str
- The image architecture.
- assurance_
checks_ Sequence[Imageperformeds Assurance Checks Performed Args] - The list of image assurance checks performed on the image.
- str
- The name of the user who registered the image.
- blacklisted bool
- Whether the image is blacklisted.
- block_
image bool - If this field is set to true, the image will be blacklisted.
- comment str
- The image creation comment.
- created str
- The date and time when the image was registered.
- critical_
vulnerabilities int - Number of critical severity vulnerabilities detected in the image.
- default_
user str - The default user of the image.
- digest str
- The content digest of the image.
- disallowed bool
- Whether the image is disallowed (non-compliant).
- disallowed_
by_ boolassurance_ checks - Whether the image was disallowed because of Image Assurance Policies.
- docker_
id str - The Docker image ID.
- docker_
labels Sequence[str] - Docker labels of the image.
- docker_
version str - The Docker version used when building the image.
- dta_
severity_ strscore - DTA severity score.
- dta_
skipped bool - If DTA was skipped.
- dta_
skipped_ strreason - The reason why DTA was skipped.
- environment_
variables Sequence[str] - Environment variables in the image.
- high_
vulnerabilities int - Number of high severity vulnerabilities detected in the image.
- histories
Sequence[Image
History Args] - The Docker history of the image.
- image_
size int - The size of the image in bytes.
- image_
type str - The type of the image.
- labels Sequence[str]
- Aqua labels of the image.
- low_
vulnerabilities int - Number of low severity vulnerabilities detected in the image.
- malware int
- Number of malware found on the image.
- medium_
vulnerabilities int - Number of medium severity vulnerabilities detected in the image.
- name str
- The name of the image.
- negligible_
vulnerabilities int - Number of negligible severity vulnerabilities detected in the image.
- newer_
image_ boolexists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- os str
- The operating system detected in the image
- os_
version str - The version of the OS detected in the image.
- parent str
- The ID of the parent image.
- partial_
results bool - Whether the image could only be partially scanned.
- pending_
disallowed bool - Whether the image is non-compliant, but is pending this status due to running containers.
- permission str
- Permission of the image.
- str
- The name of the user who last modified the image permissions.
- permission_
comment str - The comment provided when the image permissions were last modified
- permission_
modification_ strcomment - A comment on why the image was whitelisted or blacklisted
- registry str
- The name of the registry where the image is stored.
- registry_
type str - Type of the registry.
- repo_
digests Sequence[str] - The repository digests.
- repository str
- The name of the image's repository.
- scan_
date str - The date and time when the image was last scanned.
- scan_
error str - If the image scan failed, the failure message.
- scan_
status str - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- sensitive_
data int - Number of sensitive data detected in the image.
- tag str
- The tag of the image.
- total_
vulnerabilities int - The total number of vulnerabilities detected in the image.
- virtual_
size int - The virtual size of the image.
- vulnerabilities
Sequence[Image
Vulnerability Args] - A list of all the vulnerabilities found in the image
- whitelisted bool
- Whether the image is whitelisted.
- allow
Image Boolean - If this field is set to true, the image will be whitelisted.
- architecture String
- The image architecture.
- assurance
Checks List<Property Map>Performeds - The list of image assurance checks performed on the image.
- String
- The name of the user who registered the image.
- blacklisted Boolean
- Whether the image is blacklisted.
- block
Image Boolean - If this field is set to true, the image will be blacklisted.
- comment String
- The image creation comment.
- created String
- The date and time when the image was registered.
- critical
Vulnerabilities Number - Number of critical severity vulnerabilities detected in the image.
- default
User String - The default user of the image.
- digest String
- The content digest of the image.
- disallowed Boolean
- Whether the image is disallowed (non-compliant).
- disallowed
By BooleanAssurance Checks - Whether the image was disallowed because of Image Assurance Policies.
- docker
Id String - The Docker image ID.
- docker
Labels List<String> - Docker labels of the image.
- docker
Version String - The Docker version used when building the image.
- dta
Severity StringScore - DTA severity score.
- dta
Skipped Boolean - If DTA was skipped.
- dta
Skipped StringReason - The reason why DTA was skipped.
- environment
Variables List<String> - Environment variables in the image.
- high
Vulnerabilities Number - Number of high severity vulnerabilities detected in the image.
- histories List<Property Map>
- The Docker history of the image.
- image
Size Number - The size of the image in bytes.
- image
Type String - The type of the image.
- labels List<String>
- Aqua labels of the image.
- low
Vulnerabilities Number - Number of low severity vulnerabilities detected in the image.
- malware Number
- Number of malware found on the image.
- medium
Vulnerabilities Number - Number of medium severity vulnerabilities detected in the image.
- name String
- The name of the image.
- negligible
Vulnerabilities Number - Number of negligible severity vulnerabilities detected in the image.
- newer
Image BooleanExists - Whether a new version of the image is available in the registry but is not scanned and registered yet.
- os String
- The operating system detected in the image
- os
Version String - The version of the OS detected in the image.
- parent String
- The ID of the parent image.
- partial
Results Boolean - Whether the image could only be partially scanned.
- pending
Disallowed Boolean - Whether the image is non-compliant, but is pending this status due to running containers.
- permission String
- Permission of the image.
- String
- The name of the user who last modified the image permissions.
- permission
Comment String - The comment provided when the image permissions were last modified
- permission
Modification StringComment - A comment on why the image was whitelisted or blacklisted
- registry String
- The name of the registry where the image is stored.
- registry
Type String - Type of the registry.
- repo
Digests List<String> - The repository digests.
- repository String
- The name of the image's repository.
- scan
Date String - The date and time when the image was last scanned.
- scan
Error String - If the image scan failed, the failure message.
- scan
Status String - The scan status of the image (either 'pending', 'inprogress', 'finished', 'failed' or 'notstarted').
- sensitive
Data Number - Number of sensitive data detected in the image.
- tag String
- The tag of the image.
- total
Vulnerabilities Number - The total number of vulnerabilities detected in the image.
- virtual
Size Number - The virtual size of the image.
- vulnerabilities List<Property Map>
- A list of all the vulnerabilities found in the image
- whitelisted Boolean
- Whether the image is whitelisted.
Supporting Types
ImageAssuranceChecksPerformed, ImageAssuranceChecksPerformedArgs
- Assurance
Type string - The type of the Assurance Policy the check originated from.
- Blocking bool
- Whether the check is blocking (i.e. a failure should trigger a disallow).
- Control string
- The name of the image assurance control.
- Dta
Skipped bool - If DTA was skipped.
- Dta
Skipped stringReason - The reason why DTA was skipped.
- Failed bool
- Whether the image failed the check.
- Policy
Name string - The name of the Image Assurance Policy the check originated from.
- Assurance
Type string - The type of the Assurance Policy the check originated from.
- Blocking bool
- Whether the check is blocking (i.e. a failure should trigger a disallow).
- Control string
- The name of the image assurance control.
- Dta
Skipped bool - If DTA was skipped.
- Dta
Skipped stringReason - The reason why DTA was skipped.
- Failed bool
- Whether the image failed the check.
- Policy
Name string - The name of the Image Assurance Policy the check originated from.
- assurance
Type String - The type of the Assurance Policy the check originated from.
- blocking Boolean
- Whether the check is blocking (i.e. a failure should trigger a disallow).
- control String
- The name of the image assurance control.
- dta
Skipped Boolean - If DTA was skipped.
- dta
Skipped StringReason - The reason why DTA was skipped.
- failed Boolean
- Whether the image failed the check.
- policy
Name String - The name of the Image Assurance Policy the check originated from.
- assurance
Type string - The type of the Assurance Policy the check originated from.
- blocking boolean
- Whether the check is blocking (i.e. a failure should trigger a disallow).
- control string
- The name of the image assurance control.
- dta
Skipped boolean - If DTA was skipped.
- dta
Skipped stringReason - The reason why DTA was skipped.
- failed boolean
- Whether the image failed the check.
- policy
Name string - The name of the Image Assurance Policy the check originated from.
- assurance_
type str - The type of the Assurance Policy the check originated from.
- blocking bool
- Whether the check is blocking (i.e. a failure should trigger a disallow).
- control str
- The name of the image assurance control.
- dta_
skipped bool - If DTA was skipped.
- dta_
skipped_ strreason - The reason why DTA was skipped.
- failed bool
- Whether the image failed the check.
- policy_
name str - The name of the Image Assurance Policy the check originated from.
- assurance
Type String - The type of the Assurance Policy the check originated from.
- blocking Boolean
- Whether the check is blocking (i.e. a failure should trigger a disallow).
- control String
- The name of the image assurance control.
- dta
Skipped Boolean - If DTA was skipped.
- dta
Skipped StringReason - The reason why DTA was skipped.
- failed Boolean
- Whether the image failed the check.
- policy
Name String - The name of the Image Assurance Policy the check originated from.
ImageHistory, ImageHistoryArgs
- comment str
- The commit comment for the image, if any.
- created str
- The date of creation of the layer.
- created_
by str - The command that generated the layer.
- id str
- The image ID of the layer (if any).
- size int
- The size of the image.
ImageVulnerability, ImageVulnerabilityArgs
- string
- Ack
Comment string - Ack
Expiration stringConfigured At - Ack
Expiration stringConfigured By - Ack
Expiration intDays - Ack
Scope string - Acknowledge
Date string - Ancestor
Pkg string - The ancestor of this package.
- Aqua
Score double - The score generated for the vulnerability by Aqua.
- Aqua
Score stringClassification - Score classification by Aqua.
- Aqua
Scoring stringSystem - The score system for the vulnerability by Aqua
- Aqua
Severity string - The severity generated for the vulnerability by Aqua.
- Aqua
Severity stringClassification - Classification of the severity defined by Aqua.
- Aqua
Vectors string - The vectors generated for the vulnerability by Aqua
- Audit
Events intCount - Number of audit events.
- Block
Events intCount - Number of blocked events.
- Classification string
- Classification of the vulnerability.
- Description string
- The description of the vulnerability.
- Digest string
- The content digest of the image.
- Exploit
Reference string - Reference of the exploit.
- Exploit
Type string - Type of the exploit.
- First
Found stringDate - The date when this vulnerability was first found.
- Fix
Version string - Fixed version of the resource.
- Image
Name string - Name of the image.
- Last
Found stringDate - The date when this vulnerability was last found.
- Modification
Date string - Thhe date when this vulnerability was modified.
- Name string
- The name of the vulnerability.
- Nvd
Cvss2Score double - CVSS2 score by NVD
- Nvd
Cvss2Vectors string - CVSS2 vectors by NVD
- Nvd
Cvss3Score double - CVSS3 score by NVD
- Nvd
Cvss3Severity string - CVSS3 severity by NVD
- Nvd
Cvss3Vectors string - CVSS3 vectors by NVD
- Nvd
Severity string - Type of the severity identified by NVD.
- Nvd
Url string - URL of the details of this vulnerability by NVD.
- Os string
- Name of the Operating System.
- Os
Version string - The version of the OS.
- Permission string
- permission on the image
- Publish
Date string - The date this vulnerability was published.
- Registry string
- Registry of the image.
- Repository string
- Repository of the image.
- Resource
Architecture string - Architecture of the resource.
- Resource
Cpe string - Common Platform Enumeration (CPE) of the resource.
- Resource
Format string - Code format of the resource (java, apk etc.).
- Resource
Hash string - Hash of the resource.
- Resource
Licenses List<string> - List of license supported by the resource.
- Resource
Name string - Name of the resource.
- Resource
Path string - Path of the resource.
- Resource
Type string - Type of the resource
- Resource
Version string - Version of the resource.
- Severity
Classification string - Classification of the severity.
- Solution string
- Solution for the vulnerability.
- Temporal
Vector string - VPatch
Applied stringBy - VPatch
Applied stringOn - VPatch
Enforced stringBy - VPatch
Enforced stringOn - VPatch
Policy boolEnforce - VPatch
Policy stringName - VPatch
Reverted stringBy - VPatch
Reverted stringOn - VPatch
Status string - Vendor
Cvss2Score double - Vendor
Cvss2Vectors string - Vendor
Severity string - Vendor
Statement string - Vendor
Url string
- string
- Ack
Comment string - Ack
Expiration stringConfigured At - Ack
Expiration stringConfigured By - Ack
Expiration intDays - Ack
Scope string - Acknowledge
Date string - Ancestor
Pkg string - The ancestor of this package.
- Aqua
Score float64 - The score generated for the vulnerability by Aqua.
- Aqua
Score stringClassification - Score classification by Aqua.
- Aqua
Scoring stringSystem - The score system for the vulnerability by Aqua
- Aqua
Severity string - The severity generated for the vulnerability by Aqua.
- Aqua
Severity stringClassification - Classification of the severity defined by Aqua.
- Aqua
Vectors string - The vectors generated for the vulnerability by Aqua
- Audit
Events intCount - Number of audit events.
- Block
Events intCount - Number of blocked events.
- Classification string
- Classification of the vulnerability.
- Description string
- The description of the vulnerability.
- Digest string
- The content digest of the image.
- Exploit
Reference string - Reference of the exploit.
- Exploit
Type string - Type of the exploit.
- First
Found stringDate - The date when this vulnerability was first found.
- Fix
Version string - Fixed version of the resource.
- Image
Name string - Name of the image.
- Last
Found stringDate - The date when this vulnerability was last found.
- Modification
Date string - Thhe date when this vulnerability was modified.
- Name string
- The name of the vulnerability.
- Nvd
Cvss2Score float64 - CVSS2 score by NVD
- Nvd
Cvss2Vectors string - CVSS2 vectors by NVD
- Nvd
Cvss3Score float64 - CVSS3 score by NVD
- Nvd
Cvss3Severity string - CVSS3 severity by NVD
- Nvd
Cvss3Vectors string - CVSS3 vectors by NVD
- Nvd
Severity string - Type of the severity identified by NVD.
- Nvd
Url string - URL of the details of this vulnerability by NVD.
- Os string
- Name of the Operating System.
- Os
Version string - The version of the OS.
- Permission string
- permission on the image
- Publish
Date string - The date this vulnerability was published.
- Registry string
- Registry of the image.
- Repository string
- Repository of the image.
- Resource
Architecture string - Architecture of the resource.
- Resource
Cpe string - Common Platform Enumeration (CPE) of the resource.
- Resource
Format string - Code format of the resource (java, apk etc.).
- Resource
Hash string - Hash of the resource.
- Resource
Licenses []string - List of license supported by the resource.
- Resource
Name string - Name of the resource.
- Resource
Path string - Path of the resource.
- Resource
Type string - Type of the resource
- Resource
Version string - Version of the resource.
- Severity
Classification string - Classification of the severity.
- Solution string
- Solution for the vulnerability.
- Temporal
Vector string - VPatch
Applied stringBy - VPatch
Applied stringOn - VPatch
Enforced stringBy - VPatch
Enforced stringOn - VPatch
Policy boolEnforce - VPatch
Policy stringName - VPatch
Reverted stringBy - VPatch
Reverted stringOn - VPatch
Status string - Vendor
Cvss2Score float64 - Vendor
Cvss2Vectors string - Vendor
Severity string - Vendor
Statement string - Vendor
Url string
- String
- ack
Comment String - ack
Expiration StringConfigured At - ack
Expiration StringConfigured By - ack
Expiration IntegerDays - ack
Scope String - acknowledge
Date String - ancestor
Pkg String - The ancestor of this package.
- aqua
Score Double - The score generated for the vulnerability by Aqua.
- aqua
Score StringClassification - Score classification by Aqua.
- aqua
Scoring StringSystem - The score system for the vulnerability by Aqua
- aqua
Severity String - The severity generated for the vulnerability by Aqua.
- aqua
Severity StringClassification - Classification of the severity defined by Aqua.
- aqua
Vectors String - The vectors generated for the vulnerability by Aqua
- audit
Events IntegerCount - Number of audit events.
- block
Events IntegerCount - Number of blocked events.
- classification String
- Classification of the vulnerability.
- description String
- The description of the vulnerability.
- digest String
- The content digest of the image.
- exploit
Reference String - Reference of the exploit.
- exploit
Type String - Type of the exploit.
- first
Found StringDate - The date when this vulnerability was first found.
- fix
Version String - Fixed version of the resource.
- image
Name String - Name of the image.
- last
Found StringDate - The date when this vulnerability was last found.
- modification
Date String - Thhe date when this vulnerability was modified.
- name String
- The name of the vulnerability.
- nvd
Cvss2Score Double - CVSS2 score by NVD
- nvd
Cvss2Vectors String - CVSS2 vectors by NVD
- nvd
Cvss3Score Double - CVSS3 score by NVD
- nvd
Cvss3Severity String - CVSS3 severity by NVD
- nvd
Cvss3Vectors String - CVSS3 vectors by NVD
- nvd
Severity String - Type of the severity identified by NVD.
- nvd
Url String - URL of the details of this vulnerability by NVD.
- os String
- Name of the Operating System.
- os
Version String - The version of the OS.
- permission String
- permission on the image
- publish
Date String - The date this vulnerability was published.
- registry String
- Registry of the image.
- repository String
- Repository of the image.
- resource
Architecture String - Architecture of the resource.
- resource
Cpe String - Common Platform Enumeration (CPE) of the resource.
- resource
Format String - Code format of the resource (java, apk etc.).
- resource
Hash String - Hash of the resource.
- resource
Licenses List<String> - List of license supported by the resource.
- resource
Name String - Name of the resource.
- resource
Path String - Path of the resource.
- resource
Type String - Type of the resource
- resource
Version String - Version of the resource.
- severity
Classification String - Classification of the severity.
- solution String
- Solution for the vulnerability.
- temporal
Vector String - v
Patch StringApplied By - v
Patch StringApplied On - v
Patch StringEnforced By - v
Patch StringEnforced On - v
Patch BooleanPolicy Enforce - v
Patch StringPolicy Name - v
Patch StringReverted By - v
Patch StringReverted On - v
Patch StringStatus - vendor
Cvss2Score Double - vendor
Cvss2Vectors String - vendor
Severity String - vendor
Statement String - vendor
Url String
- string
- ack
Comment string - ack
Expiration stringConfigured At - ack
Expiration stringConfigured By - ack
Expiration numberDays - ack
Scope string - acknowledge
Date string - ancestor
Pkg string - The ancestor of this package.
- aqua
Score number - The score generated for the vulnerability by Aqua.
- aqua
Score stringClassification - Score classification by Aqua.
- aqua
Scoring stringSystem - The score system for the vulnerability by Aqua
- aqua
Severity string - The severity generated for the vulnerability by Aqua.
- aqua
Severity stringClassification - Classification of the severity defined by Aqua.
- aqua
Vectors string - The vectors generated for the vulnerability by Aqua
- audit
Events numberCount - Number of audit events.
- block
Events numberCount - Number of blocked events.
- classification string
- Classification of the vulnerability.
- description string
- The description of the vulnerability.
- digest string
- The content digest of the image.
- exploit
Reference string - Reference of the exploit.
- exploit
Type string - Type of the exploit.
- first
Found stringDate - The date when this vulnerability was first found.
- fix
Version string - Fixed version of the resource.
- image
Name string - Name of the image.
- last
Found stringDate - The date when this vulnerability was last found.
- modification
Date string - Thhe date when this vulnerability was modified.
- name string
- The name of the vulnerability.
- nvd
Cvss2Score number - CVSS2 score by NVD
- nvd
Cvss2Vectors string - CVSS2 vectors by NVD
- nvd
Cvss3Score number - CVSS3 score by NVD
- nvd
Cvss3Severity string - CVSS3 severity by NVD
- nvd
Cvss3Vectors string - CVSS3 vectors by NVD
- nvd
Severity string - Type of the severity identified by NVD.
- nvd
Url string - URL of the details of this vulnerability by NVD.
- os string
- Name of the Operating System.
- os
Version string - The version of the OS.
- permission string
- permission on the image
- publish
Date string - The date this vulnerability was published.
- registry string
- Registry of the image.
- repository string
- Repository of the image.
- resource
Architecture string - Architecture of the resource.
- resource
Cpe string - Common Platform Enumeration (CPE) of the resource.
- resource
Format string - Code format of the resource (java, apk etc.).
- resource
Hash string - Hash of the resource.
- resource
Licenses string[] - List of license supported by the resource.
- resource
Name string - Name of the resource.
- resource
Path string - Path of the resource.
- resource
Type string - Type of the resource
- resource
Version string - Version of the resource.
- severity
Classification string - Classification of the severity.
- solution string
- Solution for the vulnerability.
- temporal
Vector string - v
Patch stringApplied By - v
Patch stringApplied On - v
Patch stringEnforced By - v
Patch stringEnforced On - v
Patch booleanPolicy Enforce - v
Patch stringPolicy Name - v
Patch stringReverted By - v
Patch stringReverted On - v
Patch stringStatus - vendor
Cvss2Score number - vendor
Cvss2Vectors string - vendor
Severity string - vendor
Statement string - vendor
Url string
- str
- ack_
comment str - ack_
expiration_ strconfigured_ at - ack_
expiration_ strconfigured_ by - ack_
expiration_ intdays - ack_
scope str - acknowledge_
date str - ancestor_
pkg str - The ancestor of this package.
- aqua_
score float - The score generated for the vulnerability by Aqua.
- aqua_
score_ strclassification - Score classification by Aqua.
- aqua_
scoring_ strsystem - The score system for the vulnerability by Aqua
- aqua_
severity str - The severity generated for the vulnerability by Aqua.
- aqua_
severity_ strclassification - Classification of the severity defined by Aqua.
- aqua_
vectors str - The vectors generated for the vulnerability by Aqua
- audit_
events_ intcount - Number of audit events.
- block_
events_ intcount - Number of blocked events.
- classification str
- Classification of the vulnerability.
- description str
- The description of the vulnerability.
- digest str
- The content digest of the image.
- exploit_
reference str - Reference of the exploit.
- exploit_
type str - Type of the exploit.
- first_
found_ strdate - The date when this vulnerability was first found.
- fix_
version str - Fixed version of the resource.
- image_
name str - Name of the image.
- last_
found_ strdate - The date when this vulnerability was last found.
- modification_
date str - Thhe date when this vulnerability was modified.
- name str
- The name of the vulnerability.
- nvd_
cvss2_ floatscore - CVSS2 score by NVD
- nvd_
cvss2_ strvectors - CVSS2 vectors by NVD
- nvd_
cvss3_ floatscore - CVSS3 score by NVD
- nvd_
cvss3_ strseverity - CVSS3 severity by NVD
- nvd_
cvss3_ strvectors - CVSS3 vectors by NVD
- nvd_
severity str - Type of the severity identified by NVD.
- nvd_
url str - URL of the details of this vulnerability by NVD.
- os str
- Name of the Operating System.
- os_
version str - The version of the OS.
- permission str
- permission on the image
- publish_
date str - The date this vulnerability was published.
- registry str
- Registry of the image.
- repository str
- Repository of the image.
- resource_
architecture str - Architecture of the resource.
- resource_
cpe str - Common Platform Enumeration (CPE) of the resource.
- resource_
format str - Code format of the resource (java, apk etc.).
- resource_
hash str - Hash of the resource.
- resource_
licenses Sequence[str] - List of license supported by the resource.
- resource_
name str - Name of the resource.
- resource_
path str - Path of the resource.
- resource_
type str - Type of the resource
- resource_
version str - Version of the resource.
- severity_
classification str - Classification of the severity.
- solution str
- Solution for the vulnerability.
- temporal_
vector str - v_
patch_ strapplied_ by - v_
patch_ strapplied_ on - v_
patch_ strenforced_ by - v_
patch_ strenforced_ on - v_
patch_ boolpolicy_ enforce - v_
patch_ strpolicy_ name - v_
patch_ strreverted_ by - v_
patch_ strreverted_ on - v_
patch_ strstatus - vendor_
cvss2_ floatscore - vendor_
cvss2_ strvectors - vendor_
severity str - vendor_
statement str - vendor_
url str
- String
- ack
Comment String - ack
Expiration StringConfigured At - ack
Expiration StringConfigured By - ack
Expiration NumberDays - ack
Scope String - acknowledge
Date String - ancestor
Pkg String - The ancestor of this package.
- aqua
Score Number - The score generated for the vulnerability by Aqua.
- aqua
Score StringClassification - Score classification by Aqua.
- aqua
Scoring StringSystem - The score system for the vulnerability by Aqua
- aqua
Severity String - The severity generated for the vulnerability by Aqua.
- aqua
Severity StringClassification - Classification of the severity defined by Aqua.
- aqua
Vectors String - The vectors generated for the vulnerability by Aqua
- audit
Events NumberCount - Number of audit events.
- block
Events NumberCount - Number of blocked events.
- classification String
- Classification of the vulnerability.
- description String
- The description of the vulnerability.
- digest String
- The content digest of the image.
- exploit
Reference String - Reference of the exploit.
- exploit
Type String - Type of the exploit.
- first
Found StringDate - The date when this vulnerability was first found.
- fix
Version String - Fixed version of the resource.
- image
Name String - Name of the image.
- last
Found StringDate - The date when this vulnerability was last found.
- modification
Date String - Thhe date when this vulnerability was modified.
- name String
- The name of the vulnerability.
- nvd
Cvss2Score Number - CVSS2 score by NVD
- nvd
Cvss2Vectors String - CVSS2 vectors by NVD
- nvd
Cvss3Score Number - CVSS3 score by NVD
- nvd
Cvss3Severity String - CVSS3 severity by NVD
- nvd
Cvss3Vectors String - CVSS3 vectors by NVD
- nvd
Severity String - Type of the severity identified by NVD.
- nvd
Url String - URL of the details of this vulnerability by NVD.
- os String
- Name of the Operating System.
- os
Version String - The version of the OS.
- permission String
- permission on the image
- publish
Date String - The date this vulnerability was published.
- registry String
- Registry of the image.
- repository String
- Repository of the image.
- resource
Architecture String - Architecture of the resource.
- resource
Cpe String - Common Platform Enumeration (CPE) of the resource.
- resource
Format String - Code format of the resource (java, apk etc.).
- resource
Hash String - Hash of the resource.
- resource
Licenses List<String> - List of license supported by the resource.
- resource
Name String - Name of the resource.
- resource
Path String - Path of the resource.
- resource
Type String - Type of the resource
- resource
Version String - Version of the resource.
- severity
Classification String - Classification of the severity.
- solution String
- Solution for the vulnerability.
- temporal
Vector String - v
Patch StringApplied By - v
Patch StringApplied On - v
Patch StringEnforced By - v
Patch StringEnforced On - v
Patch BooleanPolicy Enforce - v
Patch StringPolicy Name - v
Patch StringReverted By - v
Patch StringReverted On - v
Patch StringStatus - vendor
Cvss2Score Number - vendor
Cvss2Vectors String - vendor
Severity String - vendor
Statement String - vendor
Url String
Package Details
- Repository
- aquasec pulumiverse/pulumi-aquasec
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aquasec
Terraform Provider.