List Nodes
| panorama_list_nodes | R Documentation |
Returns a list of nodes¶
Description¶
Returns a list of nodes.
Usage¶
panorama_list_nodes(Category, MaxResults, NextToken, OwnerAccount,
PackageName, PackageVersion, PatchVersion)
Arguments¶
CategorySearch for nodes by category.
MaxResultsThe maximum number of nodes to return in one page of results.
NextTokenSpecify the pagination token from a previous request to retrieve the next page of results.
OwnerAccountSearch for nodes by the account ID of the nodes' owner.
PackageNameSearch for nodes by name.
PackageVersionSearch for nodes by version.
PatchVersionSearch for nodes by patch version.
Value¶
A list with the following syntax:
list(
NextToken = "string",
Nodes = list(
list(
Category = "BUSINESS_LOGIC"|"ML_MODEL"|"MEDIA_SOURCE"|"MEDIA_SINK",
CreatedTime = as.POSIXct(
"2015-01-01"
),
Description = "string",
Name = "string",
NodeId = "string",
OwnerAccount = "string",
PackageArn = "string",
PackageId = "string",
PackageName = "string",
PackageVersion = "string",
PatchVersion = "string"
)
)
)