Put Registry Scanning Configuration
ecr_put_registry_scanning_configuration | R Documentation |
Creates or updates the scanning configuration for your private registry¶
Description¶
Creates or updates the scanning configuration for your private registry.
Usage¶
ecr_put_registry_scanning_configuration(scanType, rules)
Arguments¶
scanType |
The scanning type to set for the registry. When a registry scanning configuration is not defined, by default the
When the |
rules |
The scanning rules to use for the registry. A scanning rule is used to determine which repository filters are used and at what frequency scanning will occur. |
Value¶
A list with the following syntax:
list(
registryScanningConfiguration = list(
scanType = "BASIC"|"ENHANCED",
rules = list(
list(
scanFrequency = "SCAN_ON_PUSH"|"CONTINUOUS_SCAN"|"MANUAL",
repositoryFilters = list(
list(
filter = "string",
filterType = "WILDCARD"
)
)
)
)
)
)
Request syntax¶
svc$put_registry_scanning_configuration(
scanType = "BASIC"|"ENHANCED",
rules = list(
list(
scanFrequency = "SCAN_ON_PUSH"|"CONTINUOUS_SCAN"|"MANUAL",
repositoryFilters = list(
list(
filter = "string",
filterType = "WILDCARD"
)
)
)
)
)