Skip to main content

enterprise_team_organization_bulk_removals

Creates, updates, deletes, gets or lists an enterprise_team_organization_bulk_removals resource.

Overview

Nameenterprise_team_organization_bulk_removals
TypeResource
Idgithub.enterprise_team_organizations.enterprise_team_organization_bulk_removals

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
bulk_removeinsertenterprise, enterprise-team, organization_slugsUnassign an enterprise team from multiple organizations.

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
enterprisestringThe slug version of the enterprise name.
enterprise-teamstringThe slug version of the enterprise team name. You can also substitute this value with the enterprise team id.

INSERT examples

Unassign an enterprise team from multiple organizations.

INSERT INTO github.enterprise_team_organizations.enterprise_team_organization_bulk_removals (
organization_slugs,
enterprise,
enterprise-team
)
SELECT
'{{ organization_slugs }}' /* required */,
'{{ enterprise }}',
'{{ enterprise-team }}'
;