Skip to main content

entitlement_management_connected_organizations

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

Overview

Nameentitlement_management_connected_organizations
TypeResource
Identra_id.identity_governance.entitlement_management_connected_organizations

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
createdDateTimestring (date-time)The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
descriptionstringThe description of the connected organization.
displayNamestringThe display name of the connected organization. Supports $filter (eq).
externalSponsorsarray
identitySourcesarrayThe identity sources in this connected organization, one of azureActiveDirectoryTenant, crossCloudAzureActiveDirectoryTenant, domainIdentitySource, externalDomainFederation, or socialIdentitySource. Nullable.
internalSponsorsarray
modifiedDateTimestring (date-time)The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
stateThe state of a connected organization defines whether assignment policies with requestor scope type AllConfiguredConnectedOrganizationSubjects are applicable or not. The possible values are: configured, proposed, unknownFutureValue.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectconnected_organization_idRetrieve the properties and relationships of a connectedOrganization object.
listselectRetrieve a list of connectedOrganization objects.
insertinsertCreate a new connectedOrganization object.
updateupdateconnected_organization_idUpdate a connectedOrganization object to change one or more of its properties.
deletedeleteconnected_organization_idIf-MatchDelete a connectedOrganization object.

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
connected_organization_idstringThe unique identifier of connectedOrganization
If-MatchstringETag

SELECT examples

Retrieve the properties and relationships of a connectedOrganization object.

SELECT
id,
createdDateTime,
description,
displayName,
externalSponsors,
identitySources,
internalSponsors,
modifiedDateTime,
state
FROM entra_id.identity_governance.entitlement_management_connected_organizations
WHERE connected_organization_id = '{{ connected_organization_id }}' -- required
;

INSERT examples

Create a new connectedOrganization object.

INSERT INTO entra_id.identity_governance.entitlement_management_connected_organizations (
id,
createdDateTime,
description,
displayName,
identitySources,
modifiedDateTime,
state,
externalSponsors,
internalSponsors
)
SELECT
'{{ id }}',
'{{ createdDateTime }}',
'{{ description }}',
'{{ displayName }}',
'{{ identitySources }}',
'{{ modifiedDateTime }}',
'{{ state }}',
'{{ externalSponsors }}',
'{{ internalSponsors }}'
RETURNING
id,
createdDateTime,
description,
displayName,
externalSponsors,
identitySources,
internalSponsors,
modifiedDateTime,
state
;

UPDATE examples

Update a connectedOrganization object to change one or more of its properties.

UPDATE entra_id.identity_governance.entitlement_management_connected_organizations
SET
id = '{{ id }}',
createdDateTime = '{{ createdDateTime }}',
description = '{{ description }}',
displayName = '{{ displayName }}',
identitySources = '{{ identitySources }}',
modifiedDateTime = '{{ modifiedDateTime }}',
state = '{{ state }}',
externalSponsors = '{{ externalSponsors }}',
internalSponsors = '{{ internalSponsors }}'
WHERE
connected_organization_id = '{{ connected_organization_id }}' --required
RETURNING
id,
createdDateTime,
description,
displayName,
externalSponsors,
identitySources,
internalSponsors,
modifiedDateTime,
state;

DELETE examples

Delete a connectedOrganization object.

DELETE FROM entra_id.identity_governance.entitlement_management_connected_organizations
WHERE connected_organization_id = '{{ connected_organization_id }}' --required
AND If-Match = '{{ If-Match }}'
;