Example #1
0
 public static ArmDeploymentResource GetArmDeploymentResource(this ArmClient client, ResourceIdentifier id)
 {
     return(client.GetResourceClient(() =>
     {
         ArmDeploymentResource.ValidateResourceId(id);
         return new ArmDeploymentResource(client, id);
     }
                                     ));
 }