Skip to main content

Entitlementconnection

Properties

NameTypeDescriptionNotes
TenantIdStringTenant identifier that owns the connection.[optional]
ConnectionIdStringEntitlement connection identifier.[optional]
IdentityIdStringIdentity identifier associated with the connection.[optional]
MachineIdentityIdStringMachine identity identifier when the connection is machine-backed.[optional]
AccountIdStringAccount identifier for the connected source account.[optional]
EntitlementIdStringEntitlement identifier on the source.[optional]
SourceIdStringSource identifier that provides the account and entitlement.[optional]
StandaloneBooleanIndicates whether the connection is marked as standalone.[optional] [default to $false]
AttributeNameStringEntitlement attribute name on the source.[optional]
AttributeValueStringEntitlement attribute value on the source.[optional]
TypeEnum [ "JIT", "STANDING", "NA" ]Connection type classification.[optional]
StateStringCurrent lifecycle state of the connection.[optional]
StateChangedSystem.DateTimeTime the connection state was last updated.[optional]
StateChangedByStringIdentifier of the actor that last changed state.[optional]
JitActivationSystem.DateTimeTime JIT activation occurred.[optional]
JitProvisionSystem.DateTimeTime provisioning completed for JIT activation.[optional]
JitDeactivationSystem.DateTimeTime JIT deactivation occurred.[optional]
JitDeprovisionSystem.DateTimeTime deprovisioning completed after JIT deactivation.[optional]
JitExpirationSystem.DateTimeTime when JIT access expires.[optional]
DeleteAfterSystem.DateTimeTime after which the connection is eligible for deletion.[optional]
CreatedSystem.DateTimeTime when the connection was created.[optional]
ModifiedSystem.DateTimeTime when the connection was last modified.[optional]
ActorNameStringDisplay value for the actor associated with the latest change.[optional]

Examples

  • Prepare the resource
$Entitlementconnection = Initialize-Entitlementconnection  -TenantId 0b0d4856-4f0b-490a-a7da-3a741946e1d9 `
-ConnectionId 6c692d9972f8400ca4560a68f62c4c5f `
-IdentityId 35d80d89f3274418ba5748f0b3838d49 `
-MachineIdentityId 77c4ca79c5554f09afd87d651f62af79 `
-AccountId 17a0e011f3fc4b43a19ddf13d6b92ede `
-EntitlementId d532fa5cb15748e2873c6a01e5923ec4 `
-SourceId 60ab87390360421f8b7d731cb1f7017b `
-Standalone true `
-AttributeName memberOf `
-AttributeValue CN=cloud support,OU=Automation_Users,OU=slpt-automation,DC=TestAutomationAD,DC=local `
-Type JIT `
-State AVAILABLE `
-StateChanged 2025-10-30T15:02:12.345-05:00 `
-StateChangedBy c0bd1330f1c34d7989dd10dc39a1b561 `
-JitActivation 2025-12-03T10:15:30+01:00 `
-JitProvision 2025-12-03T10:15:30+01:00 `
-JitDeactivation 2025-12-03T10:15:30+01:00 `
-JitDeprovision 2025-12-03T10:15:30+01:00 `
-JitExpiration 2025-12-03T10:15:30+01:00 `
-DeleteAfter 2026-12-03T10:15:30+01:00 `
-Created 2025-10-29T09:00-05:00 `
-Modified 2025-10-30T15:02:12.345-05:00 `
-ActorName e29b41d4a41644679df31f96c209888a
  • Convert the resource to JSON
$Entitlementconnection | ConvertTo-JSON

[Back to top]