nerdexam
Microsoft

AZ-204 · Question #427

Drag and Drop Question A company backs up all manufacturing data to Azure Blob Storage. Admins move blobs from hot storage to archive tier storage every month. You must automatically move blobs to…

The correct answer is Recurrence; List blobs 2; Condition; Tier blob; Put a message on a queue. The Logic App must start with a Recurrence trigger to run automatically once a month, then use 'List blobs 2' to enumerate all blobs in the container. A Condition block evaluates whether each blob has not been modified within 180 days (TierAgeInDays = -180); if true, 'Tier…

Submitted by sofia.br· Mar 30, 2026Design and Implement Data Storage Solutions - specifically configuring automated blob lifecycle management and workflow orchestration using Azure Logic Apps and Azure Blob Storage tiers (AZ-204 / AZ-305 / DP-203)

Question

Drag and Drop Question A company backs up all manufacturing data to Azure Blob Storage. Admins move blobs from hot storage to archive tier storage every month. You must automatically move blobs to Archive tier after they have not been modified within 180 days. The path for any item that is not archived must be placed in an existing queue. This operation must be performed automatically once a month. You set the value of TierAgeInDays to -180. How should you configure the Logic App? To answer, drag the appropriate triggers or action blocks to the correct trigger or action slots. Each trigger or action block may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point. Answer:

Exhibit

AZ-204 question #427 exhibit

Answer Area

Drag items

Insert EntityTier blobWhen there are messages in a queueRecurrenceList blobs 2ConditionPut a message on a queue

Correct arrangement

  • Recurrence
  • List blobs 2
  • Condition
  • Tier blob
  • Put a message on a queue

Explanation

The Logic App must start with a Recurrence trigger to run automatically once a month, then use 'List blobs 2' to enumerate all blobs in the container. A Condition block evaluates whether each blob has not been modified within 180 days (TierAgeInDays = -180); if true, 'Tier blob' moves it to Archive tier, and if false (not yet archivable), 'Put a message on a queue' places the blob path into the existing queue as required. This flow satisfies all requirements: scheduled automation, age-based tiering, and queue notification for non-archived items.

Topics

#Azure Logic Apps#Azure Blob Storage Lifecycle#Storage Tiering#Workflow Automation

Community Discussion

No community discussion yet for this question.

Full AZ-204 Practice