Skip to content

Get Core Network

networkmanager_get_core_network R Documentation

Returns information about the LIVE policy for a core network

Description

Returns information about the LIVE policy for a core network.

Usage

networkmanager_get_core_network(CoreNetworkId)

Arguments

CoreNetworkId

[required] The ID of a core network.

Value

A list with the following syntax:

list(
  CoreNetwork = list(
    GlobalNetworkId = "string",
    CoreNetworkId = "string",
    CoreNetworkArn = "string",
    Description = "string",
    CreatedAt = as.POSIXct(
      "2015-01-01"
    ),
    State = "CREATING"|"UPDATING"|"AVAILABLE"|"DELETING",
    Segments = list(
      list(
        Name = "string",
        EdgeLocations = list(
          "string"
        ),
        SharedSegments = list(
          "string"
        )
      )
    ),
    NetworkFunctionGroups = list(
      list(
        Name = "string",
        EdgeLocations = list(
          "string"
        ),
        Segments = list(
          SendVia = list(
            "string"
          ),
          SendTo = list(
            "string"
          )
        )
      )
    ),
    Edges = list(
      list(
        EdgeLocation = "string",
        Asn = 123,
        InsideCidrBlocks = list(
          "string"
        )
      )
    ),
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$get_core_network(
  CoreNetworkId = "string"
)