Skip to content

Get Usage Profile

glue_get_usage_profile R Documentation

Retrieves information about the specified Glue usage profile

Description

Retrieves information about the specified Glue usage profile.

Usage

glue_get_usage_profile(Name)

Arguments

Name

[required] The name of the usage profile to retrieve.

Value

A list with the following syntax:

list(
  Name = "string",
  Description = "string",
  Configuration = list(
    SessionConfiguration = list(
      list(
        DefaultValue = "string",
        AllowedValues = list(
          "string"
        ),
        MinValue = "string",
        MaxValue = "string"
      )
    ),
    JobConfiguration = list(
      list(
        DefaultValue = "string",
        AllowedValues = list(
          "string"
        ),
        MinValue = "string",
        MaxValue = "string"
      )
    )
  ),
  CreatedOn = as.POSIXct(
    "2015-01-01"
  ),
  LastModifiedOn = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_usage_profile(
  Name = "string"
)