Skip to content

List Registered Subscription Providers

licensemanagerlinuxsubscriptions_list_registered_subscription_providers R Documentation

List Bring Your Own License (BYOL) subscription registration resources for your account

Description

List Bring Your Own License (BYOL) subscription registration resources for your account.

Usage

licensemanagerlinuxsubscriptions_list_registered_subscription_providers(
  MaxResults, NextToken, SubscriptionProviderSources)

Arguments

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.

SubscriptionProviderSources

To filter your results, specify which subscription providers to return in the list.

Value

A list with the following syntax:

list(
  NextToken = "string",
  RegisteredSubscriptionProviders = list(
    list(
      LastSuccessfulDataRetrievalTime = "string",
      SecretArn = "string",
      SubscriptionProviderArn = "string",
      SubscriptionProviderSource = "RedHat",
      SubscriptionProviderStatus = "ACTIVE"|"INVALID"|"PENDING",
      SubscriptionProviderStatusMessage = "string"
    )
  )
)

Request syntax

svc$list_registered_subscription_providers(
  MaxResults = 123,
  NextToken = "string",
  SubscriptionProviderSources = list(
    "RedHat"
  )
)