Skip to main content

LifecycleComment

Properties

NameTypeDescriptionNotes
CommentIdStringServer-assigned comment identifier.[optional]
AuthorLifecycleCommentAuthorReference[optional]
CommentStringFree-text comment body.[optional]
CreatedAtSystem.DateTimeTime when the comment was created (ISO-8601).[optional]

Examples

  • Prepare the resource
$LifecycleComment = Initialize-LifecycleComment  -CommentId cmt-001 `
-Author null `
-Comment Suspending agent until security review completes `
-CreatedAt 2026-05-26T19:00Z
  • Convert the resource to JSON
$LifecycleComment | ConvertTo-JSON

[Back to top]