Skip to content

List Linux Subscriptions

licensemanagerlinuxsubscriptions_list_linux_subscriptions R Documentation

Lists the Linux subscriptions that have been discovered

Description

Lists the Linux subscriptions that have been discovered. If you have linked your organization, the returned results will include data aggregated across your accounts in Organizations.

Usage

licensemanagerlinuxsubscriptions_list_linux_subscriptions(Filters,
  MaxResults, NextToken)

Arguments

Filters

An array of structures that you can use to filter the results to those that match one or more sets of key-value pairs that you specify. For example, you can filter by the name of Subscription with an optional operator to see subscriptions that match, partially match, or don't match a certain subscription's name.

The valid names for this filter are:

  • Subscription

The valid Operators for this filter are:

  • contains

  • equals

  • Notequal

MaxResults

The maximum items to return in a request.

NextToken

A token to specify where to start paginating. This is the nextToken from a previously truncated response.

Value

A list with the following syntax:

list(
  NextToken = "string",
  Subscriptions = list(
    list(
      InstanceCount = 123,
      Name = "string",
      Type = "string"
    )
  )
)

Request syntax

svc$list_linux_subscriptions(
  Filters = list(
    list(
      Name = "string",
      Operator = "Equal"|"NotEqual"|"Contains",
      Values = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)