Aquasec v0.8.27 published on Monday, Jan 29, 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 - Blocking bool
- Control string
- Dta
Skipped bool - Dta
Skipped stringReason - Failed bool
- Policy
Name string
- Assurance
Type string - Blocking bool
- Control string
- Dta
Skipped bool - Dta
Skipped stringReason - Failed bool
- Policy
Name string
- assurance
Type String - blocking Boolean
- control String
- dta
Skipped Boolean - dta
Skipped StringReason - failed Boolean
- policy
Name String
- assurance
Type string - blocking boolean
- control string
- dta
Skipped boolean - dta
Skipped stringReason - failed boolean
- policy
Name string
- assurance_
type str - blocking bool
- control str
- dta_
skipped bool - dta_
skipped_ strreason - failed bool
- policy_
name str
- assurance
Type String - blocking Boolean
- control String
- dta
Skipped Boolean - dta
Skipped StringReason - failed Boolean
- policy
Name String
ImageHistory, ImageHistoryArgs
- comment str
- created str
- created_
by str - id str
- size int
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 - Aqua
Score double - Aqua
Score stringClassification - Aqua
Scoring stringSystem - Aqua
Severity string - Aqua
Severity stringClassification - Aqua
Vectors string - Audit
Events intCount - Block
Events intCount - Classification string
- Description string
- Digest string
- Exploit
Reference string - Exploit
Type string - First
Found stringDate - Fix
Version string - Image
Name string - Last
Found stringDate - Modification
Date string - Name string
- Nvd
Cvss2Score double - Nvd
Cvss2Vectors string - Nvd
Cvss3Score double - Nvd
Cvss3Severity string - Nvd
Cvss3Vectors string - Nvd
Severity string - Nvd
Url string - Os string
- Os
Version string - Permission string
- Publish
Date string - Registry string
- Repository string
- Resource
Architecture string - Resource
Cpe string - Resource
Format string - Resource
Hash string - Resource
Licenses List<string> - Resource
Name string - Resource
Path string - Resource
Type string - Resource
Version string - Severity
Classification string - Solution string
- 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 - Aqua
Score float64 - Aqua
Score stringClassification - Aqua
Scoring stringSystem - Aqua
Severity string - Aqua
Severity stringClassification - Aqua
Vectors string - Audit
Events intCount - Block
Events intCount - Classification string
- Description string
- Digest string
- Exploit
Reference string - Exploit
Type string - First
Found stringDate - Fix
Version string - Image
Name string - Last
Found stringDate - Modification
Date string - Name string
- Nvd
Cvss2Score float64 - Nvd
Cvss2Vectors string - Nvd
Cvss3Score float64 - Nvd
Cvss3Severity string - Nvd
Cvss3Vectors string - Nvd
Severity string - Nvd
Url string - Os string
- Os
Version string - Permission string
- Publish
Date string - Registry string
- Repository string
- Resource
Architecture string - Resource
Cpe string - Resource
Format string - Resource
Hash string - Resource
Licenses []string - Resource
Name string - Resource
Path string - Resource
Type string - Resource
Version string - Severity
Classification string - Solution string
- 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 - aqua
Score Double - aqua
Score StringClassification - aqua
Scoring StringSystem - aqua
Severity String - aqua
Severity StringClassification - aqua
Vectors String - audit
Events IntegerCount - block
Events IntegerCount - classification String
- description String
- digest String
- exploit
Reference String - exploit
Type String - first
Found StringDate - fix
Version String - image
Name String - last
Found StringDate - modification
Date String - name String
- nvd
Cvss2Score Double - nvd
Cvss2Vectors String - nvd
Cvss3Score Double - nvd
Cvss3Severity String - nvd
Cvss3Vectors String - nvd
Severity String - nvd
Url String - os String
- os
Version String - permission String
- publish
Date String - registry String
- repository String
- resource
Architecture String - resource
Cpe String - resource
Format String - resource
Hash String - resource
Licenses List<String> - resource
Name String - resource
Path String - resource
Type String - resource
Version String - severity
Classification String - solution String
- 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 - aqua
Score number - aqua
Score stringClassification - aqua
Scoring stringSystem - aqua
Severity string - aqua
Severity stringClassification - aqua
Vectors string - audit
Events numberCount - block
Events numberCount - classification string
- description string
- digest string
- exploit
Reference string - exploit
Type string - first
Found stringDate - fix
Version string - image
Name string - last
Found stringDate - modification
Date string - name string
- nvd
Cvss2Score number - nvd
Cvss2Vectors string - nvd
Cvss3Score number - nvd
Cvss3Severity string - nvd
Cvss3Vectors string - nvd
Severity string - nvd
Url string - os string
- os
Version string - permission string
- publish
Date string - registry string
- repository string
- resource
Architecture string - resource
Cpe string - resource
Format string - resource
Hash string - resource
Licenses string[] - resource
Name string - resource
Path string - resource
Type string - resource
Version string - severity
Classification string - solution string
- 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 - aqua_
score float - aqua_
score_ strclassification - aqua_
scoring_ strsystem - aqua_
severity str - aqua_
severity_ strclassification - aqua_
vectors str - audit_
events_ intcount - block_
events_ intcount - classification str
- description str
- digest str
- exploit_
reference str - exploit_
type str - first_
found_ strdate - fix_
version str - image_
name str - last_
found_ strdate - modification_
date str - name str
- nvd_
cvss2_ floatscore - nvd_
cvss2_ strvectors - nvd_
cvss3_ floatscore - nvd_
cvss3_ strseverity - nvd_
cvss3_ strvectors - nvd_
severity str - nvd_
url str - os str
- os_
version str - permission str
- publish_
date str - registry str
- repository str
- resource_
architecture str - resource_
cpe str - resource_
format str - resource_
hash str - resource_
licenses Sequence[str] - resource_
name str - resource_
path str - resource_
type str - resource_
version str - severity_
classification str - solution str
- 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 - aqua
Score Number - aqua
Score StringClassification - aqua
Scoring StringSystem - aqua
Severity String - aqua
Severity StringClassification - aqua
Vectors String - audit
Events NumberCount - block
Events NumberCount - classification String
- description String
- digest String
- exploit
Reference String - exploit
Type String - first
Found StringDate - fix
Version String - image
Name String - last
Found StringDate - modification
Date String - name String
- nvd
Cvss2Score Number - nvd
Cvss2Vectors String - nvd
Cvss3Score Number - nvd
Cvss3Severity String - nvd
Cvss3Vectors String - nvd
Severity String - nvd
Url String - os String
- os
Version String - permission String
- publish
Date String - registry String
- repository String
- resource
Architecture String - resource
Cpe String - resource
Format String - resource
Hash String - resource
Licenses List<String> - resource
Name String - resource
Path String - resource
Type String - resource
Version String - severity
Classification String - solution String
- 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.