paws.management (version 0.5.0)

licensemanager: AWS License Manager

Description

License Manager makes it easier to manage licenses from software vendors across multiple Amazon Web Services accounts and on-premises servers.

Usage

licensemanager(
  config = list(),
  credentials = list(),
  endpoint = NULL,
  region = NULL
)

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

  • credentials:

    • creds:

      • access_key_id: AWS access key ID

      • secret_access_key: AWS secret access key

      • session_token: AWS temporary session token

    • profile: The name of a profile to use. If not given, then the default profile is used.

    • anonymous: Set anonymous credentials.

  • endpoint: The complete URL to use for the constructed client.

  • region: The AWS Region used in instantiating the client.

  • close_connection: Immediately close all HTTP connections.

  • timeout: The time in seconds till a timeout exception is thrown when attempting to make a connection. The default is 60 seconds.

  • s3_force_path_style: Set this to true to force the request to use path-style addressing, i.e. http://s3.amazonaws.com/BUCKET/KEY.

  • sts_regional_endpoint: Set sts regional endpoint resolver to regional or legacy https://docs.aws.amazon.com/sdkref/latest/guide/feature-sts-regionalized-endpoints.html

credentials

Optional credentials shorthand for the config parameter

  • creds:

    • access_key_id: AWS access key ID

    • secret_access_key: AWS secret access key

    • session_token: AWS temporary session token

  • profile: The name of a profile to use. If not given, then the default profile is used.

  • anonymous: Set anonymous credentials.

endpoint

Optional shorthand for complete URL to use for the constructed client.

region

Optional shorthand for AWS Region used in instantiating the client.

Service syntax

svc <- licensemanager(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string",
      anonymous = "logical"
    ),
    endpoint = "string",
    region = "string",
    close_connection = "logical",
    timeout = "numeric",
    s3_force_path_style = "logical",
    sts_regional_endpoint = "string"
  ),
  credentials = list(
    creds = list(
      access_key_id = "string",
      secret_access_key = "string",
      session_token = "string"
    ),
    profile = "string",
    anonymous = "logical"
  ),
  endpoint = "string",
  region = "string"
)

Operations

accept_grantAccepts the specified grant
check_in_licenseChecks in the specified license
checkout_borrow_licenseChecks out the specified license for offline use
checkout_licenseChecks out the specified license
create_grantCreates a grant for the specified license
create_grant_versionCreates a new version of the specified grant
create_licenseCreates a license
create_license_configurationCreates a license configuration
create_license_conversion_task_for_resourceCreates a new license conversion task
create_license_manager_report_generatorCreates a report generator
create_license_versionCreates a new version of the specified license
create_tokenCreates a long-lived token
delete_grantDeletes the specified grant
delete_licenseDeletes the specified license
delete_license_configurationDeletes the specified license configuration
delete_license_manager_report_generatorDeletes the specified report generator
delete_tokenDeletes the specified token
extend_license_consumptionExtends the expiration date for license consumption
get_access_tokenGets a temporary access token to use with AssumeRoleWithWebIdentity
get_grantGets detailed information about the specified grant
get_licenseGets detailed information about the specified license
get_license_configurationGets detailed information about the specified license configuration
get_license_conversion_taskGets information about the specified license type conversion task
get_license_manager_report_generatorGets information about the specified report generator
get_license_usageGets detailed information about the usage of the specified license
get_service_settingsGets the License Manager settings for the current Region
list_associations_for_license_configurationLists the resource associations for the specified license configuration
list_distributed_grantsLists the grants distributed for the specified license
list_failures_for_license_configuration_operationsLists the license configuration operations that failed
list_license_configurationsLists the license configurations for your account
list_license_conversion_tasksLists the license type conversion tasks for your account
list_license_manager_report_generatorsLists the report generators for your account
list_licensesLists the licenses for your account
list_license_specifications_for_resourceDescribes the license configurations for the specified resource
list_license_versionsLists all versions of the specified license
list_received_grantsLists grants that are received
list_received_grants_for_organizationLists the grants received for all accounts in the organization
list_received_licensesLists received licenses
list_received_licenses_for_organizationLists the licenses received for all accounts in the organization
list_resource_inventoryLists resources managed using Systems Manager inventory
list_tags_for_resourceLists the tags for the specified license configuration
list_tokensLists your tokens
list_usage_for_license_configurationLists all license usage records for a license configuration, displaying license consumption details by resource at a selected point in time
reject_grantRejects the specified grant
tag_resourceAdds the specified tags to the specified license configuration
untag_resourceRemoves the specified tags from the specified license configuration
update_license_configurationModifies the attributes of an existing license configuration
update_license_manager_report_generatorUpdates a report generator
update_license_specifications_for_resourceAdds or removes the specified license configurations for the specified Amazon Web Services resource
update_service_settingsUpdates License Manager settings for the current Region

Examples

Run this code
if (FALSE) {
svc <- licensemanager()
svc$accept_grant(
  Foo = 123
)
}

Run the code above in your browser using DataLab