list_package_version_dependencies
(**kwargs)¶Returns the direct dependencies for a package version. The dependencies are returned as PackageDependency objects. CodeArtifact extracts the dependencies for a package version from the metadata file for the package format (for example, the package.json
file for npm packages and the pom.xml
file for Maven). Any package version dependencies that are not listed in the configuration file are not returned.
See also: AWS API Documentation
Request Syntax
response = client.list_package_version_dependencies(
domain='string',
domainOwner='string',
repository='string',
format='npm'|'pypi'|'maven'|'nuget',
namespace='string',
package='string',
packageVersion='string',
nextToken='string'
)
[REQUIRED]
The name of the domain that contains the repository that contains the requested package version dependencies.
[REQUIRED]
The name of the repository that contains the requested package version.
[REQUIRED]
The format of the package with the requested dependencies.
The namespace of the package version with the requested dependencies. The package version component that specifies its namespace depends on its type. For example:
groupId
.scope
.[REQUIRED]
The name of the package versions' package.
[REQUIRED]
A string that contains the package version (for example, 3.5.2
).
dict
Response Syntax
{
'format': 'npm'|'pypi'|'maven'|'nuget',
'namespace': 'string',
'package': 'string',
'version': 'string',
'versionRevision': 'string',
'nextToken': 'string',
'dependencies': [
{
'namespace': 'string',
'package': 'string',
'dependencyType': 'string',
'versionRequirement': 'string'
},
]
}
Response Structure
(dict) --
format (string) --
A format that specifies the type of the package that contains the returned dependencies.
namespace (string) --
The namespace of the package version that contains the returned dependencies. The package version component that specifies its namespace depends on its type. For example:
groupId
.scope
.package (string) --
The name of the package that contains the returned package versions dependencies.
version (string) --
The version of the package that is specified in the request.
versionRevision (string) --
The current revision associated with the package version.
nextToken (string) --
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
dependencies (list) --
The returned list of PackageDependency objects.
(dict) --
Details about a package dependency.
namespace (string) --
The namespace of the package that this package depends on. The package component that specifies its namespace depends on its type. For example:
groupId
.scope
.package (string) --
The name of the package that this package depends on.
dependencyType (string) --
The type of a package dependency. The possible values depend on the package type. Example types are compile
, runtime
, and test
for Maven packages, and dev
, prod
, and optional
for npm packages.
versionRequirement (string) --
The required version, or version range, of the package that this package depends on. The version format is specific to the package type. For example, the following are possible valid required versions: 1.2.3
, ^2.3.4
, or 4.x
.
Exceptions
CodeArtifact.Client.exceptions.AccessDeniedException
CodeArtifact.Client.exceptions.InternalServerException
CodeArtifact.Client.exceptions.ResourceNotFoundException
CodeArtifact.Client.exceptions.ThrottlingException
CodeArtifact.Client.exceptions.ValidationException