Create Package Import Job
panorama_create_package_import_job | R Documentation |
Imports a node package¶
Description¶
Imports a node package.
Usage¶
Arguments¶
ClientToken
[required] A client token for the package import job.
InputConfig
[required] An input config for the package import job.
JobTags
Tags for the package import job.
JobType
[required] A job type for the package import job.
OutputConfig
[required] An output config for the package import job.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_package_import_job(
ClientToken = "string",
InputConfig = list(
PackageVersionInputConfig = list(
S3Location = list(
BucketName = "string",
ObjectKey = "string",
Region = "string"
)
)
),
JobTags = list(
list(
ResourceType = "PACKAGE",
Tags = list(
"string"
)
)
),
JobType = "NODE_PACKAGE_VERSION"|"MARKETPLACE_NODE_PACKAGE_VERSION",
OutputConfig = list(
PackageVersionOutputConfig = list(
MarkLatest = TRUE|FALSE,
PackageName = "string",
PackageVersion = "string"
)
)
)