Skip to content

Describe Node

panorama_describe_node R Documentation

Returns information about a node

Description

Returns information about a node.

Usage

panorama_describe_node(NodeId, OwnerAccount)

Arguments

NodeId

[required] The node's ID.

OwnerAccount

The account ID of the node's owner.

Value

A list with the following syntax:

list(
  AssetName = "string",
  Category = "BUSINESS_LOGIC"|"ML_MODEL"|"MEDIA_SOURCE"|"MEDIA_SINK",
  CreatedTime = as.POSIXct(
    "2015-01-01"
  ),
  Description = "string",
  LastUpdatedTime = as.POSIXct(
    "2015-01-01"
  ),
  Name = "string",
  NodeId = "string",
  NodeInterface = list(
    Inputs = list(
      list(
        DefaultValue = "string",
        Description = "string",
        MaxConnections = 123,
        Name = "string",
        Type = "BOOLEAN"|"STRING"|"INT32"|"FLOAT32"|"MEDIA"
      )
    ),
    Outputs = list(
      list(
        Description = "string",
        Name = "string",
        Type = "BOOLEAN"|"STRING"|"INT32"|"FLOAT32"|"MEDIA"
      )
    )
  ),
  OwnerAccount = "string",
  PackageArn = "string",
  PackageId = "string",
  PackageName = "string",
  PackageVersion = "string",
  PatchVersion = "string"
)

Request syntax

svc$describe_node(
  NodeId = "string",
  OwnerAccount = "string"
)