Skip to content

Get Apps List

fms_get_apps_list R Documentation

Returns information about the specified Firewall Manager applications list

Description

Returns information about the specified Firewall Manager applications list.

Usage

fms_get_apps_list(ListId, DefaultList)

Arguments

ListId

[required] The ID of the Firewall Manager applications list that you want the details for.

DefaultList

Specifies whether the list to retrieve is a default list owned by Firewall Manager.

Value

A list with the following syntax:

list(
  AppsList = list(
    ListId = "string",
    ListName = "string",
    ListUpdateToken = "string",
    CreateTime = as.POSIXct(
      "2015-01-01"
    ),
    LastUpdateTime = as.POSIXct(
      "2015-01-01"
    ),
    AppsList = list(
      list(
        AppName = "string",
        Protocol = "string",
        Port = 123
      )
    ),
    PreviousAppsList = list(
      list(
        list(
          AppName = "string",
          Protocol = "string",
          Port = 123
        )
      )
    )
  ),
  AppsListArn = "string"
)

Request syntax

svc$get_apps_list(
  ListId = "string",
  DefaultList = TRUE|FALSE
)