Class: Aws::CodeArtifact::Types::ListPackageVersionsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::ListPackageVersionsResult
- Defined in:
- gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_display_version ⇒ String
The default package version to display.
-
#format ⇒ String
A format of the package.
-
#namespace ⇒ String
The namespace of the package that contains the requested package versions.
-
#next_token ⇒ String
If there are additional results, this is the token for the next set of results.
-
#package ⇒ String
The name of the package.
-
#versions ⇒ Array<Types::PackageVersionSummary>
The returned list of [PackageVersionSummary][1] objects.
Instance Attribute Details
#default_display_version ⇒ String
The default package version to display. This depends on the package format:
For Maven and PyPI packages, it's the most recently published package version.
For npm packages, it's the version referenced by the
latest
tag. If thelatest
tag is not set, it's the most recently published package version.
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 1983 class ListPackageVersionsResult < Struct.new( :default_display_version, :format, :namespace, :package, :versions, :next_token) SENSITIVE = [] include Aws::Structure end |
#format ⇒ String
A format of the package.
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 1983 class ListPackageVersionsResult < Struct.new( :default_display_version, :format, :namespace, :package, :versions, :next_token) SENSITIVE = [] include Aws::Structure end |
#namespace ⇒ String
The namespace of the package that contains the requested package versions. The package component that specifies its namespace depends on its type. For example:
The namespace of a Maven package is its
groupId
.The namespace of an npm package is its
scope
.Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 1983 class ListPackageVersionsResult < Struct.new( :default_display_version, :format, :namespace, :package, :versions, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If there are additional results, this is the token for the next set of results.
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 1983 class ListPackageVersionsResult < Struct.new( :default_display_version, :format, :namespace, :package, :versions, :next_token) SENSITIVE = [] include Aws::Structure end |
#package ⇒ String
The name of the package.
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 1983 class ListPackageVersionsResult < Struct.new( :default_display_version, :format, :namespace, :package, :versions, :next_token) SENSITIVE = [] include Aws::Structure end |
#versions ⇒ Array<Types::PackageVersionSummary>
The returned list of PackageVersionSummary objects.
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 1983 class ListPackageVersionsResult < Struct.new( :default_display_version, :format, :namespace, :package, :versions, :next_token) SENSITIVE = [] include Aws::Structure end |