Skip to content

Commit 89258a1

Browse files
committed
Fixed typo in detached resources preventing it from showing in output
1 parent 260df64 commit 89258a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Resources/ResourceManager/SdkModels/DeploymentStacks/PSDeploymentStackSnapshot.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class PSDeploymentStackSnapshot
4141

4242
public IList<ManagedResourceReference> managedResources { get; set; }
4343

44-
public IList<ResourceReference> detatchedResources { get; set; }
44+
public IList<ResourceReference> detachedResources { get; set; }
4545

4646
public IList<ResourceReference> deletedResources { get; set; }
4747

@@ -68,7 +68,7 @@ internal PSDeploymentStackSnapshot(DeploymentStackSnapshot deploymentStackSnapsh
6868
this.locks = deploymentStackSnapshot.Locks;
6969
this.error = deploymentStackSnapshot.Error;
7070
this.managedResources = deploymentStackSnapshot.ManagedResources;
71-
this.detatchedResources = deploymentStackSnapshot.DetachedResources;
71+
this.detachedResources = deploymentStackSnapshot.DetachedResources;
7272
this.deletedResources = deploymentStackSnapshot.DeletedResources;
7373
this.failedResources = deploymentStackSnapshot.FailedResources;
7474
}

0 commit comments

Comments
 (0)