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¶
Category |
Search for nodes by category. |
MaxResults |
The maximum number of nodes to return in one page of results. |
NextToken |
Specify the pagination token from a previous request to retrieve the next page of results. |
OwnerAccount |
Search for nodes by the account ID of the nodes' owner. |
PackageName |
Search for nodes by name. |
PackageVersion |
Search for nodes by version. |
PatchVersion |
Search 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"
)
)
)
Request syntax¶
svc$list_nodes(
Category = "BUSINESS_LOGIC"|"ML_MODEL"|"MEDIA_SOURCE"|"MEDIA_SINK",
MaxResults = 123,
NextToken = "string",
OwnerAccount = "string",
PackageName = "string",
PackageVersion = "string",
PatchVersion = "string"
)