GitHubOwners Interface

public interface GitHubOwners

Resource collection API of GitHubOwners.

Method Summary

Modifier and Type Method and Description
abstract GitHubOwner get(String resourceGroupName, String securityConnectorName, String ownerName)

Returns a monitored GitHub owner.

abstract Response<GitHubOwner> getWithResponse(String resourceGroupName, String securityConnectorName, String ownerName, Context context)

Returns a monitored GitHub owner.

abstract PagedIterable<GitHubOwner> list(String resourceGroupName, String securityConnectorName)

Returns a list of GitHub owners onboarded to the connector.

abstract PagedIterable<GitHubOwner> list(String resourceGroupName, String securityConnectorName, Context context)

Returns a list of GitHub owners onboarded to the connector.

abstract GitHubOwnerListResponse listAvailable(String resourceGroupName, String securityConnectorName)

Returns a list of all GitHub owners accessible by the user token consumed by the connector.

abstract Response<GitHubOwnerListResponse> listAvailableWithResponse(String resourceGroupName, String securityConnectorName, Context context)

Returns a list of all GitHub owners accessible by the user token consumed by the connector.

Method Details

get

public abstract GitHubOwner get(String resourceGroupName, String securityConnectorName, String ownerName)

Returns a monitored GitHub owner.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
securityConnectorName - The security connector name.
ownerName - The ownerName parameter.

Returns:

gitHub Owner resource.

getWithResponse

public abstract Response<GitHubOwner> getWithResponse(String resourceGroupName, String securityConnectorName, String ownerName, Context context)

Returns a monitored GitHub owner.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
securityConnectorName - The security connector name.
ownerName - The ownerName parameter.
context - The context to associate with this operation.

Returns:

gitHub Owner resource along with Response<T>.

list

public abstract PagedIterable<GitHubOwner> list(String resourceGroupName, String securityConnectorName)

Returns a list of GitHub owners onboarded to the connector.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
securityConnectorName - The security connector name.

Returns:

list of RP resources which supports pagination as paginated response with PagedIterable<T>.

list

public abstract PagedIterable<GitHubOwner> list(String resourceGroupName, String securityConnectorName, Context context)

Returns a list of GitHub owners onboarded to the connector.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
securityConnectorName - The security connector name.
context - The context to associate with this operation.

Returns:

list of RP resources which supports pagination as paginated response with PagedIterable<T>.

listAvailable

public abstract GitHubOwnerListResponse listAvailable(String resourceGroupName, String securityConnectorName)

Returns a list of all GitHub owners accessible by the user token consumed by the connector.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
securityConnectorName - The security connector name.

Returns:

list of RP resources which supports pagination.

listAvailableWithResponse

public abstract Response<GitHubOwnerListResponse> listAvailableWithResponse(String resourceGroupName, String securityConnectorName, Context context)

Returns a list of all GitHub owners accessible by the user token consumed by the connector.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
securityConnectorName - The security connector name.
context - The context to associate with this operation.

Returns:

list of RP resources which supports pagination along with Response<T>.

Applies to