Skip to main content

github_connector_stats

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

Overview

Namegithub_connector_stats
TypeResource
Idazure.security_devops.github_connector_stats

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
nextLinkstringGets or sets next link to scroll over the results.
valuearrayGets or sets list of resources.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, git_hub_connector_name, subscription_idReturns the summary of the GitHub Connector Stats. Returns the summary of the GitHub Connector Stats.

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
git_hub_connector_namestringName of the GitHub Connector. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Returns the summary of the GitHub Connector Stats. Returns the summary of the GitHub Connector Stats.

SELECT
nextLink,
value
FROM azure.security_devops.github_connector_stats
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND git_hub_connector_name = '{{ git_hub_connector_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;