Skip to main content

issues

Creates, updates, deletes, gets or lists a issues resource.

Overview

Nameissues
TypeResource
Idazure.api_management.issues

Fields

NameDatatypeDescription
descriptiontextfield from the properties object
api_idtextfield from the properties object
created_datetextfield from the properties object
issueIdtextfield from the properties object
resourceGroupNametextfield from the properties object
serviceNametextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
titletextfield from the properties object
user_idtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTissueId, resourceGroupName, serviceName, subscriptionIdGets API Management issue details
list_by_serviceSELECTresourceGroupName, serviceName, subscriptionIdLists a collection of issues in the specified service instance.

SELECT examples

Lists a collection of issues in the specified service instance.

SELECT
description,
api_id,
created_date,
issueId,
resourceGroupName,
serviceName,
state,
subscriptionId,
title,
user_id
FROM azure.api_management.vw_issues
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';