Skip to main content

github_issues

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

Overview

Namegithub_issues
TypeResource
Idazure.security.github_issues

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertresource_group_name, security_connector_name, owner_name, repo_name, subscription_idCreates a GitHub issue for the specified repository and assessment. Creates a GitHub issue for the specified repository and assessment.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
owner_namestringRequired.
repo_namestringRequired.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
security_connector_namestringThe security connector name. Required.
subscription_idstring

INSERT examples

Creates a GitHub issue for the specified repository and assessment. Creates a GitHub issue for the specified repository and assessment.

INSERT INTO azure.security.github_issues (
securityAssessmentResourceId,
resource_group_name,
security_connector_name,
owner_name,
repo_name,
subscription_id
)
SELECT
'{{ securityAssessmentResourceId }}',
'{{ resource_group_name }}',
'{{ security_connector_name }}',
'{{ owner_name }}',
'{{ repo_name }}',
'{{ subscription_id }}'
;