GitLabGroups Interface

public interface GitLabGroups

Resource collection API of GitLabGroups.

Method Summary

Modifier and Type Method and Description
abstract GitLabGroup get(String resourceGroupName, String securityConnectorName, String groupFQName)

Returns a monitored GitLab Group resource for a given fully-qualified name.

abstract Response<GitLabGroup> getWithResponse(String resourceGroupName, String securityConnectorName, String groupFQName, Context context)

Returns a monitored GitLab Group resource for a given fully-qualified name.

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

Returns a list of GitLab groups onboarded to the connector.

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

Returns a list of GitLab groups onboarded to the connector.

abstract GitLabGroupListResponse listAvailable(String resourceGroupName, String securityConnectorName)

Returns a list of all GitLab groups accessible by the user token consumed by the connector.

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

Returns a list of all GitLab groups accessible by the user token consumed by the connector.

Method Details

get

public abstract GitLabGroup get(String resourceGroupName, String securityConnectorName, String groupFQName)

Returns a monitored GitLab Group resource for a given fully-qualified name.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
securityConnectorName - The security connector name.
groupFQName - The GitLab group fully-qualified name.

Returns:

gitLab Group resource.

getWithResponse

public abstract Response getWithResponse(String resourceGroupName, String securityConnectorName, String groupFQName, Context context)

Returns a monitored GitLab Group resource for a given fully-qualified name.

Parameters:

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

Returns:

gitLab Group resource along with Response<T>.

list

public abstract PagedIterable list(String resourceGroupName, String securityConnectorName)

Returns a list of GitLab groups 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 list(String resourceGroupName, String securityConnectorName, Context context)

Returns a list of GitLab groups 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 GitLabGroupListResponse listAvailable(String resourceGroupName, String securityConnectorName)

Returns a list of all GitLab groups 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 listAvailableWithResponse(String resourceGroupName, String securityConnectorName, Context context)

Returns a list of all GitLab groups 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