Learn R Programming

paws.management (version 0.1.12)

applicationinsights_describe_problem: Describes an application problem

Description

Describes an application problem.

Usage

applicationinsights_describe_problem(ProblemId)

Value

A list with the following syntax:

list(
  Problem = list(
    Id = "string",
    Title = "string",
    Insights = "string",
    Status = "IGNORE"|"RESOLVED"|"PENDING",
    AffectedResource = "string",
    StartTime = as.POSIXct(
      "2015-01-01"
    ),
    EndTime = as.POSIXct(
      "2015-01-01"
    ),
    SeverityLevel = "Low"|"Medium"|"High",
    ResourceGroupName = "string",
    Feedback = list(
      "NOT_SPECIFIED"|"USEFUL"|"NOT_USEFUL"
    )
  )
)

Arguments

ProblemId

[required] The ID of the problem.

Request syntax

svc$describe_problem(
  ProblemId = "string"
)