Skip to main content

github_owners_availables

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

Overview

Namegithub_owners_availables
TypeResource
Idazure.security.github_owners_availables

Fields

The following fields are returned by SELECT queries:

Provides list of GitHub owner resources

NameDatatypeDescription
propertiesobjectGitHub Owner properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, securityConnectorName

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
securityConnectorNamestringThe security connector name.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Provides list of GitHub owner resources

SELECT
properties,
systemData
FROM azure.security.github_owners_availables
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND securityConnectorName = '{{ securityConnectorName }}' -- required
;