Describe Package Version
panorama_describe_package_version | R Documentation |
Returns information about a package version¶
Description¶
Returns information about a package version.
Usage¶
panorama_describe_package_version(OwnerAccount, PackageId,
PackageVersion, PatchVersion)
Arguments¶
OwnerAccount |
The version's owner account. |
PackageId |
[required] The version's ID. |
PackageVersion |
[required] The version's version. |
PatchVersion |
The version's patch version. |
Value¶
A list with the following syntax:
list(
IsLatestPatch = TRUE|FALSE,
OwnerAccount = "string",
PackageArn = "string",
PackageId = "string",
PackageName = "string",
PackageVersion = "string",
PatchVersion = "string",
RegisteredTime = as.POSIXct(
"2015-01-01"
),
Status = "REGISTER_PENDING"|"REGISTER_COMPLETED"|"FAILED"|"DELETING",
StatusDescription = "string"
)
Request syntax¶
svc$describe_package_version(
OwnerAccount = "string",
PackageId = "string",
PackageVersion = "string",
PatchVersion = "string"
)