Skip to main content

Jitactivationactivateresponse

Properties

NameTypeDescriptionNotes
IdStringWorkflow or business identifier for this activation.[required]
ActivationIdStringPersistent activation record identifier for this JIT activation.[required]
ConnectionIdStringEntitlement connection identifier for the activation.[required]
ActivationPeriodMinsInt32Activation duration in minutes for this workflow.[required]
StatusActivationworkflowstatus[required]
StartTimeSystem.DateTimeTime when the activation workflow was started (ISO-8601).[required]

Examples

  • Prepare the resource
$Jitactivationactivateresponse = Initialize-Jitactivationactivateresponse  -Id jit-activation-abc123 `
-ActivationId 8a9b0c1d-2e3f-4a5b-6c7d-8e9f0a1b2c3d `
-ConnectionId 757fb803-9024-5861-e510-83a56e4c5bd3 `
-ActivationPeriodMins 120 `
-Status null `
-StartTime 2025-10-11T21:23:15Z
  • Convert the resource to JSON
$Jitactivationactivateresponse | ConvertTo-JSON

[Back to top]